Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
docs:programming:asp.net:web_forms_controls [2007/07/28 23:57] – external edit 127.0.0.1 | docs:programming:asp.net:web_forms_controls [2008/08/03 00:25] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Web Forms Controls ====== | ====== Web Forms Controls ====== | ||
+ | |||
===== System.Web.UI.HtmlControls ===== | ===== System.Web.UI.HtmlControls ===== | ||
+ | http:// | ||
+ | |||
HTML server controls are HTML elements exposed to the server so you can program against them. HTML server controls expose an object model that maps very closely to the HTML elements that they render. | HTML server controls are HTML elements exposed to the server so you can program against them. HTML server controls expose an object model that maps very closely to the HTML elements that they render. | ||
Line 24: | Line 27: | ||
* HtmlTableRow | * HtmlTableRow | ||
* HtmlTextArea | * HtmlTextArea | ||
+ | |||
===== System.Web.UI.WebControls ===== | ===== System.Web.UI.WebControls ===== | ||
+ | http:// | ||
+ | |||
Web server controls are ASP.NET server controls with an abstract, strongly-typed object model. Web server controls include not only form-type controls such as buttons and text boxes, but also special-purpose controls such as a calendar. Web server controls are more abstract than HTML server controls, in that their object model does not necessarily reflect HTML syntax. | Web server controls are ASP.NET server controls with an abstract, strongly-typed object model. Web server controls include not only form-type controls such as buttons and text boxes, but also special-purpose controls such as a calendar. Web server controls are more abstract than HTML server controls, in that their object model does not necessarily reflect HTML syntax. | ||