Controls You Can Use on Web Forms Panel Control
The Panel 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 Panel control is suitable for:
- Group Behavior You can manage a group of controls as a unit by putting them in a panel and then manipulating the panel. For example, you can hide or show a group of controls inside a panel by setting the panel’s Visible property.
- Dynamic Control Generation The Panel control provides a convenient container for controls that you create at run time.
- Appearance The Panel 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 Panel Controls to a Web Forms Page Adding Controls to a Web Forms Page Programmatically