| | |
Trouble rending form in firefox and netscape.
Please support our ASP.NET advertiser: Intel Parallel Studio Home
![]() |
•
•
Join Date: Mar 2006
Posts: 4
Reputation:
Solved Threads: 0
I've done extensive work developing a large on-line application form, only to find that it will not render properly in Firefox (1.5.0.1) or Netscape (8.0).
The panels are overlapping each other and style settings such as backcolor are not propagating to child elements. Yet, it renders nicely in IE.
I've already updated the section in my web.config file using Rob Eberhardt's implementation (http://slingfive.com/pages/code/browserCaps/), so the panel's are rendering as div's and not table's. Yet the problem persists.
How can I determine what webcontrols available within Visual Studio 2005 support which standards?
Can anyone tell me if my form can be made to work in these browsers? :cry:
Here's a simplified excerpt of my code:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Application.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
<style type="text/css"> legend {color:#2c5eb1}
</head>
<body>
<form id="form1" runat="server">
<table width="587" align="center">
<tr>
<td>
Font-Bold="True" Font-Italic="False" Font-Names="Arial" Font-Size="Large" ForeColor="#2C5EB1"
GroupingText="Fieldset Legend" Height="50px" Width="587px">
<table>
<tr>
<td style="height: 30px">
</td>
</tr>
<tr>
<td style="height: 30px">
</td>
</tr>
<tr>
<td style="height: 30px">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td style="height: 33px">
</td>
</tr>
<tr>
<td>
Font-Bold="True" Font-Italic="False" Font-Names="Arial" Font-Size="Large" ForeColor="#2C5EB1"
GroupingText="Fieldset Legend" Height="50px" Width="587px">
<table>
<tr>
<td style="height: 30px">
</td>
</tr>
<tr>
<td style="height: 30px">
</td>
</tr>
<tr>
<td style="height: 30px">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
</td>
</tr>
</table>
</form>
</body>
Thanks to anyone who can help...
The panels are overlapping each other and style settings such as backcolor are not propagating to child elements. Yet, it renders nicely in IE.
I've already updated the section in my web.config file using Rob Eberhardt's implementation (http://slingfive.com/pages/code/browserCaps/), so the panel's are rendering as div's and not table's. Yet the problem persists.
How can I determine what webcontrols available within Visual Studio 2005 support which standards?
Can anyone tell me if my form can be made to work in these browsers? :cry:
Here's a simplified excerpt of my code:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Application.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head runat="server">
<style type="text/css"> legend {color:#2c5eb1}
</head>
<body>
<form id="form1" runat="server">
<table width="587" align="center">
<tr>
<td>
Font-Bold="True" Font-Italic="False" Font-Names="Arial" Font-Size="Large" ForeColor="#2C5EB1"
GroupingText="Fieldset Legend" Height="50px" Width="587px">
<table>
<tr>
<td style="height: 30px">
</td>
</tr>
<tr>
<td style="height: 30px">
</td>
</tr>
<tr>
<td style="height: 30px">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td style="height: 33px">
</td>
</tr>
<tr>
<td>
Font-Bold="True" Font-Italic="False" Font-Names="Arial" Font-Size="Large" ForeColor="#2C5EB1"
GroupingText="Fieldset Legend" Height="50px" Width="587px">
<table>
<tr>
<td style="height: 30px">
</td>
</tr>
<tr>
<td style="height: 30px">
</td>
</tr>
<tr>
<td style="height: 30px">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
</td>
</tr>
</table>
</form>
</body>
Thanks to anyone who can help...
•
•
Join Date: Mar 2006
Posts: 4
Reputation:
Solved Threads: 0
Sorry, the code above was not properly tagged, and so was not all visible.
Here it is again...
Hope someone can help...
Here it is again...
Hope someone can help...
ASP.NET Syntax (Toggle Plain Text)
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Application.aspx.cs" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>Untitled Page</title> <style type="text/css"> legend {color:#2c5eb1} </style> </head> <body> <form id="form1" runat="server"> <div style="text-align: left"> <br /> <table width="587" align="center"> <tr> <td><asp:Table ID="Table1" runat="server" BackColor="#D8E7EF" Height="3px" Width="587px"> <asp:TableRow runat="server"> <asp:TableCell runat="server"></asp:TableCell> </asp:TableRow> </asp:Table> <asp:Panel ID="Panel1" runat="server" BackColor="#FBF1EC" EnableTheming="True" Font-Bold="True" Font-Italic="False" Font-Names="Arial" Font-Size="Large" ForeColor="#2C5EB1" GroupingText="Fieldset Legend" Height="50px" Width="587px"> <br /> <table> <tr> <td style="height: 30px"> <asp:Label ID="Label3" runat="server" Text="Field 1:" Width="80px"></asp:Label> <asp:TextBox ID="TextBox6" runat="server" Width="188px"></asp:TextBox> <asp:Label ID="Label4" runat="server" Text="Field 2:"></asp:Label> <asp:TextBox ID="TextBox7" runat="server"></asp:TextBox></td> </tr> <tr> <td style="height: 30px"> <asp:Label ID="Label5" runat="server" Text="Field 3:"></asp:Label> <asp:TextBox ID="TextBox8" runat="server" Width="24px"></asp:TextBox> <asp:Label ID="Label6" runat="server" Text="Field 4:"></asp:Label> <asp:TextBox ID="TextBox9" runat="server"></asp:TextBox></td> </tr> <tr> <td style="height: 30px"> <asp:Label ID="Label7" runat="server" Text="Field 5:"></asp:Label> <asp:TextBox ID="TextBox10" runat="server" Width="430px"></asp:TextBox></td> </tr> </table> </asp:Panel> </td> </tr> <tr> <td style="height: 33px"> </td> </tr> <tr> <td><asp:Table ID="Table3" runat="server" BackColor="#D8E7EF" Height="3px" Width="587px"> <asp:TableRow runat="server"> <asp:TableCell runat="server"></asp:TableCell> </asp:TableRow> </asp:Table> <asp:Panel ID="Panel3" runat="server" BackColor="#FBF1EC" EnableTheming="True" Font-Bold="True" Font-Italic="False" Font-Names="Arial" Font-Size="Large" ForeColor="#2C5EB1" GroupingText="Fieldset Legend" Height="50px" Width="587px"> <br /> <table> <tr> <td style="height: 30px"> <asp:Label ID="Label8" runat="server" Text="Field 1:" Width="80px"></asp:Label> <asp:TextBox ID="TextBox11" runat="server" Width="188px"></asp:TextBox> <asp:Label ID="Label9" runat="server" Text="Field 2:"></asp:Label> <asp:TextBox ID="TextBox12" runat="server"></asp:TextBox></td> </tr> <tr> <td style="height: 30px"> <asp:Label ID="Label10" runat="server" Text="Field 3:"></asp:Label> <asp:TextBox ID="TextBox13" runat="server" Width="24px"></asp:TextBox> <asp:Label ID="Label11" runat="server" Text="Field 4:"></asp:Label> <asp:TextBox ID="TextBox14" runat="server"></asp:TextBox></td> </tr> <tr> <td style="height: 30px"> <asp:Label ID="Label12" runat="server" Text="Field 5:"></asp:Label> <asp:TextBox ID="TextBox15" runat="server" Width="430px"></asp:TextBox></td> </tr> </table> </asp:Panel> </td> </tr> <tr> <td> </td> </tr> </table> <br /> <br /> </div> </form> </body> </html>
![]() |
Similar Threads
- Why put up with the pain. Change browsers! (Web Browsers)
- How do you draw on the form (VB.NET)
- javascript NG on Firefox (JavaScript / DHTML / AJAX)
- Help with FireFox assoc (Web Browsers)
- owner form display problem (VB.NET)
- help with form/ display issues (ColdFusion)
- Problems in Dynaform (Form Mail) URGENT HELP (PHP)
- Mozilla, Firefox, Thunderbird, NetScape, IE6 vulnerabilities (Viruses, Spyware and other Nasties)
Other Threads in the ASP.NET Forum
- Previous Thread: Unable to open Web Project '...'. The file path '...' does not correspond to the URL
- Next Thread: resizing a frameset
| Thread Tools | Search this Thread |
Tag cloud for ASP.NET
.net 2.0 activexcontrol advice ajax alltypeofvideos anathor appliances application asp asp.net bc30451 beginner bottomasp.net box browser button c# cac checkbox click commonfunctions dataaccesslayer database datagridview datagridviewcheckbox datalist development dgv dialog dropdownlist dynamically edit expose feedback fileuploader fill flash form formatdecimal formview google gridview gudi iframe iis image javascript list listbox login microsoft mono mouse mssql multistepregistration news numerical opera panelmasterpagebuttoncontrols parent project radio redirect registration relationaldatabases reportemail richtextbox save schoolproject search security select sessionvariables silverlight smartcard smoobjects software sql-server sqlserver2005 suse textbox tracking treeview unauthorized validatedate validation vb.net video videos view vista visualstudio web webapplications webdevelopemnt webprogramming webservice xsl youareanotmemberofthedebuggerusers





