Server Basic CONTROLS:
1 textbox
Text: Gets or sets the literal
TextMode: Single-line/multirow/password ...
Wrap: Whether line wrapping
Rows: Number of rows
Columns: Number of columns, width
BackColor: Background Color
ReadOnly: Whether read-only
2 label literal
Label
Text: Gets or sets the literal
Serialize to a <span> tag, you can set the style
Literal
Text
After serialization, it becomes plain text, which is usually used to output the JS code to the interface through the background, or to output HTML code.
3 button LinkButton ImageButton
The Button property is similar to a TextBox.
LinkButton Hyperlink-style buttons
ImageButton is the text that does not button, change to picture form.
4 Hyperlink checkbox RadioButton
Hyperlink: Just a hyperlink. Navigatereurl the address of the connection (inside the attribute)
CheckBox: Option button. Whether the property checked is selected
RadioButton: Radio button. Multiple radio buttons are the same as groupname to indicate that they are a group. Whether the property checked is selected.
WebForm a simple server control.