I have this simple server control with a valid Width
attribute : ( asp.net 4 , vs2010 )
<asp:TextBox runat="server" ID="TXT_UserName" Width="250px"></asp:TextBox>
On all browsers (all + ie<11
) it does render as it should with the appropriate Width
But with ie11 ( windows 8.1 ) it wont render as it should : (it's even not in the view source ) :
Here is how I see it in other browsers ( including ie<11
)
I've already added (for past problems which are now solved) the App_Browsers
folder with the appropriate files for compatibility with IE versions :
Question :
Why I'm not seeing the width attribute and how can I fix it ?