The FileUpload control enables you to upload files to the server. It displays a text box control and a browse button that allows users to select a file to upload to the server.
Properties
- FileBytes
- FileContent
- FileName
- SaveAs
- PostedFile
The FileUpload control provides the HttpPostedFile class. Its has the following properties:
- ContentLength
- ContentType
- FileName
- InputStream
- SaveAs
Example
The following shows how to upload a single file.
- <b>Upload File:</b>
- <asp:FileUpload ID="FileUpload1" runat="server" />
The following shows how to upload multiple files.
- <b>Upload Multiple File:</b>
- <asp:FileUpload ID="fileuplaod1" runat="server" AllowMultiple="true" Font-Bold="true" />
We need to set
AllowMultiple="true".ExampleThe following shows how to upload multiple files from various folders.
DifferentFile.aspx
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="differntfolder.aspx.cs" Inherits="differntfolder" %>
-
- <!DOCTYPE html>
-
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title></title>
- </head>
- <body>
- <form id="form1" runat="server">
- <div align="center">
- <table border="1">
- <tr>
- <th>Multiple File Upload</th>
- </tr>
- <tr>
- <td></td>
- </tr>
- <tr>
- <td>
- <asp:FileUpload ID="fileuplaod1" runat="server" AllowMultiple="true" Font-Bold="true" />
- </td>
- </tr>
- <tr>
- <td>
- <asp:Button ID="button1" runat="server" Text="upload" OnClick="button1_Click" Width="82px" />
- </td>
- </tr>
- <tr>
- <td></td>
- </tr>
- <tr>
- <td>
- <asp:Label ID="label1" runat="server" ForeColor="Green" Font-Size="Large" Font-Bold="true"></asp:Label><br />
- </td>
- </tr>
- <tr>
- <td></td>
- </tr>
- <tr>
- <td>
- <asp:Label ID="labbel2" runat="server" Font-Bold="true" ForeColor="Red" Font-Size="Large"></asp:Label><br />
- </td>
- </tr>
- <tr>
- <td>
- <asp:Label ID="label3" runat="server" Font-Bold="true" ForeColor="Black" Font-Size="Large"></asp:Label>
- </td>
- </tr>
- </table>
- </div>
- </form>
- </body>
- </html>
Code File DifferentFile.aspx.cs
Output
- If you are selecting more than 5 files.
- If the file is not selected.
- After uploading multiple files.
- After uploading files.