On one of my intranet pages I want my users to browse for file w/ a .dbf extension. I would like the Browse window to filter by this extension automatically. I've found that if I type "*.dbf" into the form element, then hit the Browse button, it will filter. However, I can't set a VALUE attribute for the INPUT element so the users don't have to type it all the time i.e.:
That does not work. Are there any attributes for the FILE INPUT tag that will allow me to filter?
Code:
<input type=file name=myname value="*.dbf">
That does not work. Are there any attributes for the FILE INPUT tag that will allow me to filter?