jesus4u
Oct 3rd, 2003, 02:33 PM
I am using the following code in the html to present the user with the ability to select a file to upload to the server.
<form id="Form1" encType="multipart/form-data" runat="server">
Select File to Upload: <input id="uploadedFile" type="file" size="20" name="uploadedFile" runat="server">
<p><input id="upload" type="button" value="Upload" name="upload" runat="server" OnServerClick="Upload_Click">
<p><asp:label id="message" runat="server"></asp:label>
</form>
All is well. I was just wondering if I can programmatically select the location that the user sees when the pop up window appears? I need to show our users on the intranet a specific location on the network versus the default view of their hardrive.
<form id="Form1" encType="multipart/form-data" runat="server">
Select File to Upload: <input id="uploadedFile" type="file" size="20" name="uploadedFile" runat="server">
<p><input id="upload" type="button" value="Upload" name="upload" runat="server" OnServerClick="Upload_Click">
<p><asp:label id="message" runat="server"></asp:label>
</form>
All is well. I was just wondering if I can programmatically select the location that the user sees when the pop up window appears? I need to show our users on the intranet a specific location on the network versus the default view of their hardrive.