Using the ASP.NET Panel Control
Introduction
This post speaks about using Panel Control in ASP.NET Pages. Panel Control allows you to work with a group of ASP.NET Controls. You can use it to show or hide a group of controls.
Example:
The Panel control supports the following properties
- DefaultButton When you set a value to this property, the default button in the panel is invoked when you press the Enter Button.
- Direction Enables you to set or get the direction of the text. Possible values are NotSet, LeftToRight and RightToLeft.
- GroupingText Enables you to render the panel control as a fieldset with legend.
- ScrollBars Enables you to display the scrollbars around the panel control.
By default panel renders with the Div tag and when you set the GroupingText property panel renders the fieldset tag.
No comments yet. Be the first.
Leave a reply