ASP.NET Basics

HTML Basics
ASP.NET Web Server
Advanced HTML
Application Designing
Using Visual Studio
ASP.NET Standards
ASP.NET Styling
ASP.NET Navigation

ASP.NET Tips

ASP.NET Validation
HTML forms
CSS Styling
CSS Advanced
ASP.NET Features
ASP.NET Image Effects
Common mistakes
DB Design tips

Building Applications

Design Secure Apps
Build Secure Apps

ASP.NET Web Server Controls

Start Lesson »

ASP.NET Web Server Controls are special ASP.NET tags understood by the server. Like HTML server controls, ASP.NET Web Server Controls are also created on the server and they require a runat="server" attribute to work. However, ASP.NET Web Server Controls do not necessarily map to any existing HTML elements and they may represent more complex elements.

The syntax for creating a Web server control is:

<asp:control_name id="some_id" runat="server" />

ASP.NET Web Server Controls
ASP.NET Web Server Controls

Control

Description

AdRotator

ASP.NET Control to display a sequence of images like in an Advertisement.

BulletedList

ASP.NET Control used to create a bulleted list format.

Button

ASP.NET Control to create a Push button

Calendar

ASP.NET Control to display a Calendar

CheckBox

ASP.NET Control to display a Check Box

CheckBoxList

ASP.NET Control to create a Check box group with multi selection options.

DropDownlist

ASP.NET Control to create a Drop-down list

FileUpload

ASP.NET Control used to enable File uploading functions.

HiddenField

ASP.NET Control to create a Field which is Hidden.

Hyperlink

ASP.NET Control to create a Hyperlink field.

Image

ASP.NET Control to display an Image.

ImageButton

ASP.NET Control to display an Image Button.

ImageMap

ASP.NET Control to create a ImageMap.

Label

ASP.NET Control to display programmable static content.

LinkButton

ASP.NET Control to create a Hyperlink Button.

ListBox

ASP.NET Control to create a single or multi-selection Drop-Down list.

Literal

ASP.NET Control to display programmable text on a page.

Localize

ASP.NET Control to create a Localize object.

MultiView

ASP.NET Control to create a MultiView object

Panel

ASP.NET Control to provide a Container for other ASP.NET Controls.

PlaceHolder

ASP.NET Control to reserve space for other ASP.NET Controls added using Code.

RadioButton

ASP.NET Control to create a Radio Button

RadioButtonList

ASP.NET Control to create a group of Radio Buttons

Substitution

ASP.NET Control to create a Substitution object.

Table

ASP.NET Control to create a table

TextBox

ASP.NET Control to create a Text Box

View

ASP.NET Control to create a View object.

Wizard

ASP.NET Control to create a Wizard.

Xml

ASP.NET Control to display an XML file. ASP.NET XML Control also is used to display the results of an XSL transform

 

Click on Start Lesson to continue learning.

Start Lesson »

More Related ASP.NET tutorials


HTML Tutorial

CSS Styling Tutorial

HTML Tutorial

HTML Advanced tutorial

Styling with CSS Master Pages Themes
Styling with CSS, Master Pages, Themes
New Features

ASP.NET Image Effects and Rollovers

HTML Tutorial

HTML Basics tutorial

New Features
New Visual Studio 2005 features
HTML Tutorial

ASP.NET Validation Server Controls