Do you use ASP.NET control or just HTML with CSS?
I'm having some troubles with width in TextBox and DropDownList. In different browsers, the width will be different and the controls will not have the same size.
I'm considering change this to HTML tag like input and select, but I'm wondering why does ASP.NET has this controls if that they don't work? If they don't work, avoid them... right?
Give me information I need, make me better than before :-).
Here is the code:
<asp:DropDownList ID="ddlDirComercial" runat="server" CssClass="clsValor" Width="400px">
<asp:ListItem Text="test" Value="1"></asp:ListItem>
</asp:DropDownList>
<asp:TextBox ID="txtCAE" runat="server" CssClass="clsValor" Width="400px" />
Regards.