Stepping up to Web Server Controls

TextBox Server Control

TextBox Server Control The TextBox Server Control is the control that allow users to submit their information or input text.You can use TextBox control to three different HTML elements in your forms. First, the TextBox control can be used as a standard HTML textbox. <asp:TextBox ID=”TextBox1″ runat=”server”></asp:TextBox> Second, the TextBox control can allow you to …

TextBox Server Control Read More »

ListBox Server Control

ListBox Server Control The ListBox server control has a function similar to the DropDownList control. It displays a collection of items. The ListBox control allows the user to make multiple selections from the collection. Code for ListBox Server Control: <asp:ListBox ID=”ListBox1″ runat=”server” SelectionMode=”Multiple”> <asp:ListItem>C</asp:ListItem> <asp:ListItem>C++</asp:ListItem> <asp:ListItem>Word 2013</asp:ListItem> <asp:ListItem>Excel 2013</asp:ListItem> <asp:ListItem>PowerPoint 2013</asp:ListItem> <asp:ListItem>Computer Fundamentals</asp:ListItem> </asp:ListBox> You can …

ListBox Server Control Read More »

RadioButton Server Control  

RadioButton Server Control The RadioButton server control is similar to the CheckBox server control.Radio buttons are generally used in form elements that require at least two options. Code for RadioButton Server Control: <asp:RadioButton ID=”RadioButton1″ runat=”server” Text=”Yes” GroupName=”Set1″ /> <asp:RadioButton ID=”RadioButton2″ runat=”server” Text=”No” GroupName=”Set1″/> GroupName is a Property which can be set in one of the …

RadioButton Server Control   Read More »

Table Server Control

Table Server Control The HTML <table> element is one of the most common formats which is used for displaying a large number of records of information. Code for Table Server Control: <asp:Table ID=”Table1″ runat=”server”> <asp:TableRow ID=”TableRow1″ runat=”server”> <asp:TableHeaderCell>Courses Offered</asp:TableHeaderCell> <asp:TableHeaderCell>Time Duration</asp:TableHeaderCell> </asp:TableRow> <asp:TableRow> <asp:TableCell>C</asp:TableCell> <asp:TableCell>3 Months</asp:TableCell> </asp:TableRow> <asp:TableRow> <asp:TableCell>C++</asp:TableCell> <asp:TableCell>3 Months</asp:TableCell> </asp:TableRow> <asp:TableRow> <asp:TableCell>Word 2013</asp:TableCell> …

Table Server Control Read More »

BulletList Server Control

BulletList Server Control The BulletedList server control is used to display a bulleted list of items in an ordered (using the HTML <ol> element) or unordered (using the HTML <ul> element)way. The BulletStyle attribute changes the style of the bullet that introduce each line of the list. It has possible values of Numbered, LowerAlpha, UpperAlpha, LowerRoman, UpperRoman, Disc, …

BulletList Server Control Read More »

LinkButton Server Control

LinkButton Server Control The LinkButton server control is a variation of the button control that takes the form of a hyperlink in the web page. So When the user clicks the link, it behaves like a button. Code for Linkbutton Server Control <asp:LinkButton ID=”LinkButton1″ Runat=”server”> Welcome to eBIZ Education Packages </asp:LinkButton>

  ImageButton Server Control

ImageButton Server Control The ImageButton control is also a variation of the Button control.it allows you to use a custom image as the form’s button. This means that you can create your own buttons as images, and the users can click the images to submit the data. Code for ImageButton Server Control: <asp:ImageButton ID=”ImageButton1″ runat=”server” …

  ImageButton Server Control Read More »

HyperLink Server Control

The HyperLink server control allows you to programmatically work with any hyperlinks on your web pages. Hyperlinks are the links that allow users to jump from one page to another. Code for Hyperlink Server Control <asp:HyperLink ID=”HyperLink1″ runat=”server” Text=”Go to Ebiz Holiday Packages” NavigateUrl=”Default2.aspx”></asp:HyperLink> The interesting thing about the HyperLink server control is that it …

HyperLink Server Control Read More »

Wizard Control

The Wizard server control contain a sequence of steps that is displayed to the end user. Web pages are all about either displaying or gathering information and, in many cases, you do not want to display all the information at once. Wizard control is used to manage the step-by-step process that includes logic on the …

Wizard Control Read More »

Scroll to Top