|
|
 |
Aspnet servercontroltips Tutorial |
 |
 |
|
 |
|
|
|
|
HTML server controls run at the server side. All the HTML files that are there in ASP.NET are read as text files. These files can be changed into programmable files using runat=”server” attribute. Normal HTML controls that are there in the ASP.NET would run only in the client-side. Therefore in order to use the HTML server controls advantageously you need to use ViewState management and validation. Some of the common ASP.NET HTML Server Controls you apply to a page are:
• HTMLAnchor- Creates and connects server-side control with <a> HTML elements. • HTMLImage- Creates a server-side control to view and edit images. • HTMLButton- Creates and links server-side control to button element. • HTMLForm and- Creates server-side controls which multiple control can be placed. • HTMLGeneric- creates server side controls for <body>, <div>, <span> etc. |
|
|
|
|
|
|
|
| |
|
|
| |
| |
|
|
|
|