WHT IS DIFFERENCES BETWEEN HTML CONTROLS AND SERVER CONTROLS.
Answers were Sorted based on User's Feedback
Answer / jignesh hirpara
There are three families of controls and they are as follows:-
1. HTML CONTROLS:- HTML CONTROLS are standard controls and they are part of HTML language. These are not classes but they are tags and we can only do client-side programming with them.
2. HTML SERVER CONTROLS: HTML SERVER CONTROLS are the same as HTML controls but they have runat=server attribute. With the HTML server controls we can do server-side programming. This is more beneficial to those people who are migrating from old web application to .NET applications.
3. WEB CONTROLS: WEB CONTROLS are .NET classes and they have rich set of properties, methods, and events. They are programmable on client side as well server side. There are many control that offer same UI(User Interface)but have more features to HTML controls. For eg. Calendar controls, data grid controls and validation controls and these control render to client as HTML controls.
Is This Answer Correct ? | 0 Yes | 0 No |
What is the use of view state?
What is the lifespan for items stored in ViewState?
Define machine.config in .net?
How to write unmanaged code and how to identify whether the code is managed /unmanaged?
Define viewstate in .net?
which method marks a config file section for encryption?
What are skins?
What is redirectpermanent in asp.net?
What is the flow of processing of the request? : asp.net mvc
In which event of the page life cycle, is the viewstate available?
What are runtime hosts?
In asp.net 3.5 we can go one page to onther page without using statemanagment concept?