Controls You Can Use on Web Forms ASP.NET Standard Controls FileUpload Control
The FileUpload Web server control provides a container control within a Web Forms page that you can use as a parent for static text and for other controls. The FileUpload control is suitable for:
- Group Behavior You can manage a group of controls as a unit by putting them in a fileupload and then manipulating the fileupload. For example, you can hide or show a group of controls inside a fileupload by setting the fileupload’s Visible property.
- Dynamic Control Generation The FileUpload control provides a convenient container for controls that you create at run time.
- Appearance The FileUpload control supports appearance properties such as BackColor and BorderWidth that you can set to create a unique look for a local area on a page.
Adding FileUpload Controls to a Web Forms Page Adding Controls to a Web Forms Page Programmatically