• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

ASP.NET People...and those using Mozilla.

Kinesis

Senior member
I am dabbling in ASP.NET, and since I have switched to Mozilla Browser I have had coding problems. Partly because I know IE will load and display a page whether there are errors or not sometimes.

Anyhow, when I use something simple like this in ASP.NET, it is not displayed in Mozilla.

<asp:label BackColor="#000000" ForeColor="#FFFFFF" ID="lblHeader" runat="server" Text="Login Page" ToolTip="Welcome balh blah" width="100%" height="25px"></asp:label>

Any thoughts as too why? Mozilla renders based on Navigator HTML coding? Resolution?


 
In mozilla:

<span id="lblHeader" title="Welcome to blah blah"><font color="White">Login Page</font></span>

Which makes partial sense as to why it is not displayed, since the font is white on a white background. But why convert to a span with no backcolor. hmm!

 
Dont use gridlayout use flowlayout and on change it from the default IE 5.0 compatibility to HTML 3.2 compatibility. M$ makes it so by default they only work with IE browser. I have been using Mozilla Firebird with no problems after these 2 changes
 
Umm...Ok. Dumb question. But what is difference, and how have I been doing one over the other?

Gidlayout vs Flowlayout.

Sorry you lost me.
 
Back
Top