Hi,
What is the difference between HTML and ASP.NET controls.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rohatash KumarPosted Aug 2, 2011, 12:48 AM
HTML VS ASP.NET controls
Server events
Server control events are handled in the server whereas HTML control events are handled in the page.
State management
Server controls can maintain data across requests using view state whereas HTML controls have no such mechanism to store data between requests.
Browser detection
Server controls can detect browser automatically and adapt display of control accordingly whereas HTML controls can't detect browser automatically.
Properties
Server controls contain properties whereas HTML controls have attributes only.
VulpesPosted Aug 1, 2011, 12:49 PM