We are using ASP to upload a file.
We have <input type="file"> which allows the user to choose a file.
But user can type any junk into the file text box and when he clicks on Upload button it uploads an empty file with the junk given as file name.
We need to prevent this.I can use <input type="file" READONLY>,But this works fine on IE5 but on IE6,the Browse button does not open the dialog box at all.
Do you have any workaround for this which will work on both IE5 and IE6.
Its urgent