Asp.Net provides way to work with the HTML Server controls on the server side programming with a set controls collectively called HTML Controls. These controls are grouped together in the Visual Studio Toolbox in the the HTML Control tab. The markup of the controls are similar to the HTML control. These controls lets the developer program against the HTML controls in the serverside.
HTML elements in ASP.NET files are, by default, treated as text. To make these elements programmable, add a runat="server" attribute to the HTML element. This attribute indicates that the element should be treated as a server control.
Here is a list of the HTML controls provided with Asp.Net
Revision number 1, Thursday, February 14, 2008 10:15:06 PM by vik20000in
You must Login to comment.
Revision #17
Tue, Feb 12, 2008 8:02 PM
by
|
Web Controls
Web controls are ASP.NET controls which are understood and compiled on the server and render as HTML markup on the page. Most of the web server controls render their own HTML controls (or many HTML controls). The markup that is output froma web control can
|
Revision #7
Sat, Jul 5, 2008 8:39 AM
by
|
Input and Data Validation
Garbage in, garbage out. You can avoid data cleanup tasks on the backend by avoiding bad data coming in. ASP.NET validation controls and third party validation controls help you receive the right data in the right format. Whitepapers Request Validation - Preventing
|
Revision #6
Mon, Feb 4, 2008 8:00 AM
by
|
ViewState
ViewStateis the mechanism that allows state values to be preserved across page postbacks. Because of the stateless nature of web pages, regular page membervariables will not maintain their values across postbacks. When we need a page variable to maintain its
|