You are on page 1of 1

https://visualstudio.microsoft.

com/downloads/

Components of Web Application / Parts of Web Application

1. Content (.aspx,.html, .jpg, audio, video, pdf, doc etc.)


2. Program Logic (.cs)
3. Configuration (web.config)

ToolBox -

Standard Controls -

1. Label - to display any static text / data or information to the user

2. TextBox - to accept data from the user

3. Button - To Perform some action on its click, it executes the code from
.cs file from the given function name

4. HyperLink - to link with the give URL / Page

Properties -
1. NavigateUrl
2. target

5. RadioButton - to provide the selection of any one choice or items from the
given Group, Group can be set using the GroupName property

6. DropDownList - to provide set of choices to the user from where he / she


can select any one choice

7. CheckBox - to provide checked on unchecked status / on or off / true or


false

Common Properties -

1. ID - to give unique id for all controls


2. Text - to change the text of the control
3. Font
4. BackColor
5. ForeColor

TextBox Properties -

1. TextMode - to change the behaviour of the textbox i.e. single line,


password, multiline, date etc.

2. MaxLength - to set the max allowed chars

You might also like