Simple ( I think) question
I'm adding a textbox to a navigation bar, and it has to be a specific width.
If I add the following code...
<asp:textbox id="txtSearch" runat="server" Width=75 />
...it looks fine in IE, but Netscape 6.2 ignores the width.
I then tried setting the width dynamically with the following...
<form method="post" runat="server">
<% txtSearch.Width = Unit.Pixel(25) %>
<asp:textbox id="txtSearch" runat="server" />
</form
...but again that only worked for IE.
Anyone know why neither of these work for Netscape?
Many thanks
Gerry