Latest web development tutorials

ASP.NET Panel GroupingText property

Control Panel Control Panel

Definition and Usage

GroupingText property sets or returns the title text in the control Panel control group.

This property is used for the Panel control displays a frame and title.

grammar

<asp:Panel GroupingText="string" runat="server">
Some Content
</asp:Panel>
属性 描述
string 字符串值,作为 Panel 的标题文本显示。


Examples

The following examples are provided to GroupingText Control Panel:

<form runat="server">
<asp:Panel id="pan1" runat="server" GroupingText="Panel" >
Hello!
</asp:Panel>
</form>

The demonstration >>

Control Panel Control Panel