Textbox Width And Netscape

Aitmanga

Newcomer
Joined
Mar 12, 2004
Messages
23
Location
Mexico
I have the following test code:


Code:
  <%@ Page Language="VB" %>
  <html>
  <head>
  </head>
  <body>
     <form runat="server">
  	  <asp:Textbox id="Textbox1" runat="server" Width="250px"></asp:Textbox>
     </form>
  </body>
  </html>

Nothing too fancy, only a TextBox is displayed.

The problem is that in IExplorer the textbox renders with the appropiate width, but in Netscape it appears at the default width.
It may not be a very large issue, but I want mi webform to look the same in both browsers.
Any help is greatly appreciated
 
Back
Top