ASP.NET Tutorial

.NET Framework

ASP.NET Introduction

ASP.NET Web Forms

Standard Controls

Label Control

TextBox Control

Image Control

Button Controls

Redirecting User

Using HyperLinks

RadioButton Control

RadioButtonList

CheckBox Control

CheckBoxList Control

DropDownList

ListBox Control

ImageMap Control

Event-Driven Programming

ASP.NET Page Structure

IsPostBack

Master Page

View State

Visibility of Controls

Formatting Controls

Applying CSS

Dynamic CSS

Using Style Class

Themes and Skins

Panel Control

PlaceHolder Control

AdRotator Control

Calendar Control

File Upload, Virtual Path

Validation Controls

Page Navigation

User Control

Separating Code-Presentation

Overview of ADO.NET

Data Binding

DataBinding List Control

Asp.Net Standard Control

ASP.NET provides a number of controls that can be added to Web forms pages. These controls are also known as server-side controls or server controls. They are available in namespace System.Web.UI.WebControls.

ASP.NET Controls are divided into seven groups:

ASP.Net Standard Controls

S.No.Web ControlHTML Output Element
<asp:Label><span> … </span>
<asp:TextBox><input type="text" value="…">
<asp:Image><img src="…">
<asp:Button><input type="submit">
<asp:LinkButton><a href="jscript:_doPostBack(…)"> … </a>
<asp:ImageButton><input type="image">
<asp:HyperLink><a href="…"> … </a>
<asp:RadioButton><input type="radio">
<asp:CheckBox><input type="checkbox">
<asp:DropDownList><select> … </select>
<asp:ListBox><select size="…"> … </select>
<asp:Panel><div> … </div>
<asp:Table><table> … </table>