How can I run sth like OpenFileDialog? In ASP.NET there's no this control.
Yes, there's option to use
<input type="file" name="filediag" />
but there's default name disabled to modifications.
I found either solution
<input type="file" name="filediag" style="display:none" />
<input type="button" value="browse..." onclick="document.form1.filediag.click()" />
but it doesn't work...or I'm doing sth wrong.
Is there other possibility to do this?