| Author: shankar v 03 Nov 2009 | Member Level: Gold | Rating:  Points: 2 |
html controls are client side controls i.e all the validation are done at client browser itself the page will not posted to server where as asp.net controls are server side controls all the validation are done at server each & every control will goes to server & it will maintain a view state i.e a <hidden> field is maintained.
for more go this link
http://aspalliance.com/258_HTML_and_ASPNET_Server_Controls
Regards & Thanks Shankar V www.teaminnovative.in
|
| Author: lakshya 03 Nov 2009 | Member Level: Gold | Rating:  Points: 2 |
html is a markup language that is used to display static information... but asp.net allows provides you to add inetraction functionality to html.. like u login gmail and u are redirected to mail account. you may say asp.net is an server side event driven language
Happy dotneting Spread Smiles :-) Visit Lakshya
|
| Author: Christopher 03 Nov 2009 | Member Level: Gold | Rating:  Points: 2 |
html is for creating static pages
In ASP.net,split Code-behind(C#) and html
|
| Author: ShashiKant Gupta 04 Nov 2009 | Member Level: Gold | Rating:  Points: 2 |
HTML is the final thing reaching to the client browser weather your page is already in html or aspx. in case of aspx page webserver does this task to parse and render the html for it.
client browser only gets the html which it can understand.
|