can someone point me in the right direction here. i have a very simple asp.net web form. The form has a label, a button, and a dropdown list that fills with words once the button is clicked. after list fills the user can click on a item in the list and it will do a auto post back to the server and then display the choosen item in the label.. this works fine in IE. but when i run it in netscape nothing shows on the page.
the only difference that i see between the two (IE and Netscape ) are
'this is what show when i do a show source in IE
<input type="submit" name="Button1" value="Click me" id="Button1" style="width:194px;" />
'source for Netscape
<input type="submit" name="Button1" value="Click me" id="Button1" />
notice that the width is missing.. i think that this is the problem but i'm not sure.
but here is the complete show code on netscape.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>WebForm1</title>
<meta name="GENERATOR" content="Microsoft Visual Studio.NET 7.0">
<meta name="CODE_LANGUAGE" content="Visual Basic 7.0">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content=" </HEAD>
<body MS_POSITIONING="GridLayout">
<TABLE height="682" cellSpacing="0" cellPadding="0" width="267" border="0" ms_2d_layout="TRUE">
<TR vAlign="top">
<TD width="267" height="682">
<form name="Form1" method="post" action="WebForm1.aspx" id="Form1">
<input type="hidden" name="__VIEWSTATE" value="dDw5ODYwNTc2MjI7Oz7sxmA5YZgJrHJtx/Jg64+KqL4beg==" />
<TABLE height="250" cellSpacing="0" cellPadding="0" width="670" border="0" ms_2d_layout="TRUE">
<TR vAlign="top">
<TD width="209" height="23"></TD>
<TD width="106"></TD>
<TD width="51"></TD>
<TD width="3"></TD>
<TD width="301"></TD>
</TR>
<TR vAlign="top">
<TD height="81"></TD>
<TD colSpan="4">
</TD>
</TR>
<TR vAlign="top">
<TD colSpan="2" height="90"></TD>
<TD colSpan="3">
<span id="Label1">Label</span></TD>
</TR>
<TR vAlign="top">
<TD colSpan="4" height="33"></TD>
<TD>
<input type="submit" name="Button1" value="Click me" id="Button1" /></TD>
</TR>
<TR vAlign="top">
<TD colSpan="3" height="23"></TD>
<TD colSpan="2">
</TD>
</TR>
</TABLE>
</form>
</TD>
</TR>
</TABLE>
</body>
</HTML>
[/blue]
Any suggestions?
cheers.
--------------

the only difference that i see between the two (IE and Netscape ) are
'this is what show when i do a show source in IE
<input type="submit" name="Button1" value="Click me" id="Button1" style="width:194px;" />
'source for Netscape
<input type="submit" name="Button1" value="Click me" id="Button1" />
notice that the width is missing.. i think that this is the problem but i'm not sure.
but here is the complete show code on netscape.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<title>WebForm1</title>
<meta name="GENERATOR" content="Microsoft Visual Studio.NET 7.0">
<meta name="CODE_LANGUAGE" content="Visual Basic 7.0">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema" content=" </HEAD>
<body MS_POSITIONING="GridLayout">
<TABLE height="682" cellSpacing="0" cellPadding="0" width="267" border="0" ms_2d_layout="TRUE">
<TR vAlign="top">
<TD width="267" height="682">
<form name="Form1" method="post" action="WebForm1.aspx" id="Form1">
<input type="hidden" name="__VIEWSTATE" value="dDw5ODYwNTc2MjI7Oz7sxmA5YZgJrHJtx/Jg64+KqL4beg==" />
<TABLE height="250" cellSpacing="0" cellPadding="0" width="670" border="0" ms_2d_layout="TRUE">
<TR vAlign="top">
<TD width="209" height="23"></TD>
<TD width="106"></TD>
<TD width="51"></TD>
<TD width="3"></TD>
<TD width="301"></TD>
</TR>
<TR vAlign="top">
<TD height="81"></TD>
<TD colSpan="4">
</TD>
</TR>
<TR vAlign="top">
<TD colSpan="2" height="90"></TD>
<TD colSpan="3">
<span id="Label1">Label</span></TD>
</TR>
<TR vAlign="top">
<TD colSpan="4" height="33"></TD>
<TD>
<input type="submit" name="Button1" value="Click me" id="Button1" /></TD>
</TR>
<TR vAlign="top">
<TD colSpan="3" height="23"></TD>
<TD colSpan="2">
</TD>
</TR>
</TABLE>
</form>
</TD>
</TR>
</TABLE>
</body>
</HTML>
[/blue]
Any suggestions?
cheers.
--------------