While using the FileUpload control in firefox the width property is not set.
<asp:FileUplo ad ID="dd" runat="server" width="300px" />
In firefox the control is rendered as following
<input type="file" name="ctl00$Con tentPlaceHolder 1$dd" id="ctl00_Conte ntPlaceHolder1_ dd" style="width:30 0px;" />
Anyone know why width is ignored here?
(works in IE7)
<asp:FileUplo ad ID="dd" runat="server" width="300px" />
In firefox the control is rendered as following
<input type="file" name="ctl00$Con tentPlaceHolder 1$dd" id="ctl00_Conte ntPlaceHolder1_ dd" style="width:30 0px;" />
Anyone know why width is ignored here?
(works in IE7)
Comment