Click here to Skip to main content
15,915,172 members
Home / Discussions / Web Development
   

Web Development

 
NewsRe: Formatting issue(code) [modified] Pin
Chris McGlothen12-Jul-06 7:17
Chris McGlothen12-Jul-06 7:17 
AnswerRe: Formatting issue(code) Pin
Guffa13-Jul-06 0:37
Guffa13-Jul-06 0:37 
GeneralRe: Formatting issue(code) Pin
Chris McGlothen13-Jul-06 5:11
Chris McGlothen13-Jul-06 5:11 
QuestionProblem with menu control in asp.net 2.0: Help Pin
Rookie12-Jul-06 6:26
Rookie12-Jul-06 6:26 
AnswerRe: Problem with menu control in asp.net 2.0: Help Pin
Brent Lamborn12-Jul-06 6:50
Brent Lamborn12-Jul-06 6:50 
GeneralRe: Problem with menu control in asp.net 2.0: Help Pin
Rookie12-Jul-06 7:27
Rookie12-Jul-06 7:27 
GeneralRe: Problem with menu control in asp.net 2.0: Help [modified] Pin
Brent Lamborn12-Jul-06 8:03
Brent Lamborn12-Jul-06 8:03 
GeneralRe: Problem with menu control in asp.net 2.0: Help Pin
Rookie12-Jul-06 13:18
Rookie12-Jul-06 13:18 
I found the problem and it only occurs in the master page. Here is the explanation I found on the web:

A lot of users are finding that after moving their ASP.NET 1.1 site to ASP.NET 2.0 and then adding a Menu Control to their app, the Menu doesn't work.

The reason this doesn't work is that an extra tag was added to web.config <xhtmlConformance mode="Legacy" />
This flag was meant for 2.0 to act a lot more like 1.1 and one of the major differences is the naming convention of controls.
This naming change causes the quirky behavior with Menu in IE.

There are 2 fixes for this issue:

1) Remove the xhtmlConformance tag from web.config
Personally if you can do it, I recommend this option. If you're using ASP.NET 2.0 features, you should try and stick with the new rendering modes.

2) If you can't do #1, then give your masterpage an ID
To do this, add a line to your Page_Load for your Masterpage:

public partial class MasterPage : System.Web.UI.MasterPage
{
protected void Page_Load(object sender, EventArgs e)
{
this.ID = "Master1";
}
}

Rookie Programmer
QuestionBest Software? Pin
pctechgirl12-Jul-06 4:11
pctechgirl12-Jul-06 4:11 
AnswerRe: Best Software? [modified] Pin
Jonathan [Darka]12-Jul-06 4:20
professionalJonathan [Darka]12-Jul-06 4:20 
GeneralRe: Best Software? Pin
Paddy Boyd12-Jul-06 5:55
Paddy Boyd12-Jul-06 5:55 
GeneralRe: Best Software? Pin
Jonathan [Darka]12-Jul-06 6:57
professionalJonathan [Darka]12-Jul-06 6:57 
GeneralRe: Best Software? Pin
Steve Maier12-Jul-06 9:01
professionalSteve Maier12-Jul-06 9:01 
GeneralRe: Best Software? Pin
Paddy Boyd12-Jul-06 22:08
Paddy Boyd12-Jul-06 22:08 
AnswerRe: Best Software? Pin
Brent Lamborn12-Jul-06 4:47
Brent Lamborn12-Jul-06 4:47 
QuestionWritting to Word document template Pin
AfriDiesel12-Jul-06 1:35
AfriDiesel12-Jul-06 1:35 
AnswerRe: Writting to Word document template Pin
ashish_patil++1-Aug-06 4:12
ashish_patil++1-Aug-06 4:12 
QuestionHow to set display of a column according to its value in DataGrid Pin
Jovito12-Jul-06 0:59
Jovito12-Jul-06 0:59 
QuestionNew Person need HELP !!!!!!!!! Pin
Frozen@Sasi12-Jul-06 0:46
Frozen@Sasi12-Jul-06 0:46 
AnswerRe: New Person need HELP !!!!!!!!! [modified] Pin
Jonathan [Darka]12-Jul-06 4:32
professionalJonathan [Darka]12-Jul-06 4:32 
GeneralRe: New Person need HELP !!!!!!!!! Pin
Frozen@Sasi12-Jul-06 9:18
Frozen@Sasi12-Jul-06 9:18 
AnswerRe: New Person need HELP !!!!!!!!! Pin
Guffa12-Jul-06 4:33
Guffa12-Jul-06 4:33 
QuestionDisplay image based on dropdown Pin
MaxJam12-Jul-06 0:15
MaxJam12-Jul-06 0:15 
AnswerRe: Display image based on dropdown Pin
Edbert P13-Jul-06 18:57
Edbert P13-Jul-06 18:57 
QuestionHELP: CSS, merging more than 1 class definition.... Pin
dhruba.bandopadhyay12-Jul-06 0:09
dhruba.bandopadhyay12-Jul-06 0:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.