Now I have it. Where I am using <INPUT id="fWaiver" style="FONT-SIZE: x-small; FONT-FAMILY: Verdana" type="file" name="File2" runat="server"><br> <INPUT id="bWaiverUpload" style="FONT-SIZE: x-small; FONT-FAMILY: Verdana" type="submit" value="Upload" name="bWaiverUpload" runat="server"> That opens up by file browser. NOW, I need it to show a perticular type of file. For my example. I want to it to show only *.pdf files on the browser; instread of all files. Is that possible? How would I do that? Thanks.
ASP can't control that. It's a client thing. What you'll probably wind up having to do is checking the file extension with some javascript code, and backing up the validation with server-side code to defend against file types. It's less than ideal. But read here while you're at it: http://www.cs.tut.fi/~jkorpela/forms/file.html#filter Ray at work "Tash" wrote in message news:318F16EA-6E7C-43A9-9C2F-29857BAF1CFD@microsoft.com... > Now I have it. Where I am using > > <INPUT id="fWaiver" style="FONT-SIZE: x-small; FONT-FAMILY: Verdana" > type="file" name="File2" runat="server"><br> > > <INPUT id="bWaiverUpload" style="FONT-SIZE: x-small; FONT-FAMILY: Verdana" > type="submit" value="Upload" name="bWaiverUpload" runat="server"> > > That opens up by file browser. NOW, I need it to show a perticular type of > file. For my example. I want to it to show only *.pdf files on the browser; > instread of all files. Is that possible? How would I do that? > > Thanks.