Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

can someone point me in the right d

Status
Not open for further replies.

jcisco

Programmer
Sep 17, 2002
125
US
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=&quot;submit&quot; name=&quot;Button1&quot; value=&quot;Click me&quot; id=&quot;Button1&quot; style=&quot;width:194px;&quot; />



'source for Netscape
<input type=&quot;submit&quot; name=&quot;Button1&quot; value=&quot;Click me&quot; id=&quot;Button1&quot; />


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 &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;>
<HTML>
<HEAD>
<title>WebForm1</title>
<meta name=&quot;GENERATOR&quot; content=&quot;Microsoft Visual Studio.NET 7.0&quot;>
<meta name=&quot;CODE_LANGUAGE&quot; content=&quot;Visual Basic 7.0&quot;>
<meta name=&quot;vs_defaultClientScript&quot; content=&quot;JavaScript&quot;>
<meta name=&quot;vs_targetSchema&quot; content=&quot; </HEAD>
<body MS_POSITIONING=&quot;GridLayout&quot;>
<TABLE height=&quot;682&quot; cellSpacing=&quot;0&quot; cellPadding=&quot;0&quot; width=&quot;267&quot; border=&quot;0&quot; ms_2d_layout=&quot;TRUE&quot;>
<TR vAlign=&quot;top&quot;>
<TD width=&quot;267&quot; height=&quot;682&quot;>
<form name=&quot;Form1&quot; method=&quot;post&quot; action=&quot;WebForm1.aspx&quot; id=&quot;Form1&quot;>
<input type=&quot;hidden&quot; name=&quot;__VIEWSTATE&quot; value=&quot;dDw5ODYwNTc2MjI7Oz7sxmA5YZgJrHJtx/Jg64+KqL4beg==&quot; />

<TABLE height=&quot;250&quot; cellSpacing=&quot;0&quot; cellPadding=&quot;0&quot; width=&quot;670&quot; border=&quot;0&quot; ms_2d_layout=&quot;TRUE&quot;>
<TR vAlign=&quot;top&quot;>
<TD width=&quot;209&quot; height=&quot;23&quot;></TD>
<TD width=&quot;106&quot;></TD>
<TD width=&quot;51&quot;></TD>
<TD width=&quot;3&quot;></TD>
<TD width=&quot;301&quot;></TD>
</TR>
<TR vAlign=&quot;top&quot;>
<TD height=&quot;81&quot;></TD>
<TD colSpan=&quot;4&quot;>
</TD>
</TR>
<TR vAlign=&quot;top&quot;>
<TD colSpan=&quot;2&quot; height=&quot;90&quot;></TD>
<TD colSpan=&quot;3&quot;>
<span id=&quot;Label1&quot;>Label</span></TD>
</TR>
<TR vAlign=&quot;top&quot;>
<TD colSpan=&quot;4&quot; height=&quot;33&quot;></TD>
<TD>
<input type=&quot;submit&quot; name=&quot;Button1&quot; value=&quot;Click me&quot; id=&quot;Button1&quot; /></TD>
</TR>
<TR vAlign=&quot;top&quot;>
<TD colSpan=&quot;3&quot; height=&quot;23&quot;></TD>
<TD colSpan=&quot;2&quot;>
</TD>
</TR>
</TABLE>
</form>
</TD>
</TR>
</TABLE>
</body>
</HTML>
[/blue]


Any suggestions?

cheers.



--------------
:)
 
Change your target schemas to Netscape and see if that helps.

This is done buy the properties on the web form.


AGIMA - professional web hosting is our business.

AGIMA Computing
 
nope. didn't work. :'(

--------------
:)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top