ASP: browse to specified folder on server?

I am making an ASP/VBScript page.

I’d like to be able to select a file from a folder that is already on the server.

In a form, I am trying to insert an <INPUT> box with a BROWSE button right next to it. When you click on the BROWSE button, it should browse to a certain folder on the server, which I specify.

I’ve tried using this code, but I can’t specify where to browse to:


<input name="filename" type="file" id="filename" runat="server">

I’m guessing I can use Server.MapPath for this, but I’m not sure how.

Any help would be MUCH appreciated!!

:puzzle: