Upload Files from an ASP.net Webpage
Often I find a need to upload files (ussually images) directly from a webpage to my web server. Sure I could use FTP or Visual Studio (Publish Website), but it's a heck of a lot easier if I have a simple webpage interface to do so.
The following code will allow you to upload as many as five files at once (this can easily be changed by simply adding or removing the file input controls from the page) and return whether the upload was successful or what errors were encountered.
In the .aspx file, setup the controls for entering your files and uploading them:
<b><font size=4>Upload Files</font></b><br />
<br />
<asp:Label ID="lblMessage" runat="server" ForeColor="Red" />
<asp:Panel ID="pnlUploadFiles" runat="server">
Use the below form to upload files to the web server. You may upload up to five files at once.<br />
<br />
<br />
Upload files to:
<asp:DropDownList ID="ddlDirectory" runat="server">
<asp:ListItem Value="images" Text="Images" />
</asp:DropDownList>
<br />
<br />
<input ID="myFile1" type="File" runat="Server" size="50" /><br />
<input ID="myFile2" type="File" runat="Server" size="50" /><br />
<input ID="myFile3" type="File" runat
This article has been view 669 times.
|