I am trying to include a File Upload integration on an ASP.NET page using the HTML input control.
<input type="file" id="strImageName" runat="server" class="inputtxt" size="44" maxlength="100" contentEditable="false" NAME="strImageName">
I am accepting a variety of file types, but definitely not HTML. When I use the control:
I see two different behaviors wrt the filtered file extensions, one in IE and the other in Chrome.
File Upload Control on IE
File Upload Control on Chrome
Can you please help me emulate the behavior of Chrome on IE?
Thanks,
Anil