0% found this document useful (0 votes)
59 views

HTML Controls

This document summarizes various HTML server controls in ASP.NET including controls for common HTML elements like links, buttons, forms, images and different input types. It describes each control's corresponding HTML element and some of their core properties like ID, click handlers and enabling server-side functionality.

Uploaded by

Parker Bck
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
59 views

HTML Controls

This document summarizes various HTML server controls in ASP.NET including controls for common HTML elements like links, buttons, forms, images and different input types. It describes each control's corresponding HTML element and some of their core properties like ID, click handlers and enabling server-side functionality.

Uploaded by

Parker Bck
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

HTML controls

http://msdn.microsoft.com/en-us/library/620b4fzf(v=vs.71).aspx
HtmlAnchor HtmlButton HtmlForm HtmlGeneric HtmlImage HtmlInputButton HtmlInputCheckBox HtmlInputFile HtmlInputHidden HtmlInputImage Controls an <a> HTML element Controls a <button> HTML element Controls a <form> HTML element Controls other HTML element not specified by a specific HTML server control, like <body>, <div>, <span>, etc. Controls an <image> HTML element Controls <input type="button">, <input type="submit">, and <input type="reset"> HTML elements Controls an <input type="checkbox"> HTML element Controls an <input type="file"> HTML element Controls an <input type="hidden"> HTML element Controls an <input type="image"> HTML element

HtmlInputRadioButton Controls an <input type="radio"> HTML element HtmlInputText HtmlSelect HtmlTable HtmlTableCell HtmlTableRow HtmlTextArea Controls <input type="text"> and <input type="password"> HTML elements Controls a <select> HTML element Controls a <table> HTML element Controls <td>and <th> HTML elements Controls a <tr> HTML element Controls a <textarea> HTML element

HtmlAnchor Control
<a id="programmaticID" href="linkurl" name="bookmarkname" OnServerClick="onserverclickhandler" target="linkedcontentframeorwindow" title="titledisplayedbybrowser" runat="server" > linktext </a>

HtmlButton Control
<button id="programmaticID" OnServerClick="onserverclickhandler" runat="server" > buttontext, image, or control </button>

HtmlInputButton Control
<input type=button | submit | reset id="programmaticID" OnServerClick="onserverclickhandler" runat="server" >
ASP.NET server controls ASP.NET AJAX server controls User controls and custom controls Validation controls Data source controls Data view controls Login & security controls Personalization controls Master page Rich controls AJAX controls AJAX toolkit controls

You might also like