Here I am using JSP as front end and struts input tag for uploading file
My need is, To force the browser, that only list .xml and .txt extension files in open dialog and it should be browser independent (support older and newer version browser)
So far I tried this code snippet:
<td><html:file property="FileData" accept =".txt,.xml"/></td>
It's not working. Is there any other way to achieve this?
Thank you