ASP Net Controls ASP.Net Tutorial

DefaultButton:     the  default button in a Panel. The  default button is invoked when you press the Enter button.
Direction:         direction in which controls that display text are rendered. 
                   Possible values are NotSet, LeftToRight, and RightToLeft.
GroupingText:      render the Panel control as a fieldset with a particular legend.
HorizontalAlign:   horizontal alignment of the contents of the Panel. 
                   Possible values are Center, Justify, Left, NotSet, and Right.
ScrollBars:        display scrollbars around the panel's contents. 
                   Possible values are Auto, Both, Horizontal, None, and Vertical.
<%@ Page Language="C#" %>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


    Panel Grouping Text


    
    

            id="pnlContact"
        GroupingText="Contact Information"
        Runat="server">
            id="lblFirstName"
        Text="First Name:"
        AssociatedControlID="txtFirstName"
        Runat="server" />
    
            id="txtFirstName"
        AutoCompleteType="FirstName"
        Runat="server" />
    
            id="lblLastname"
        Text="Last Name:"
        AssociatedControlID="txtLastName"
        Runat="server" />
    
            id="txtLastName"
        AutoCompleteType="LastName"
        Runat="server" />
    
            id="btnSubmit"
        Text="Submit"
        Runat="server" />