Reputation: 175
Web Server Controls and Html Server Controls both derive from System.Web.UI.Control.
What is the emphasis of the concept "server" here? Why "server" control?
Upvotes: 2
Views: 174
Reputation: 1711
see this link. You will come to know about Web Server Controls and Html Server Controls.
Upvotes: 1
Reputation: 3689
For more information on server vs client control see the link below
Upvotes: 0
Reputation: 3419
They are "Server" controls because they are a server-side abstraction. They are used as controls on the server in your ASPX pages and may be directly manipulated in server-side code. However, in request processing they are translated and emitted into the response as standard HTML and (possibly) JavaScript. Thus, they are an abstraction that really only exists server side.
Upvotes: 1
Reputation: 161831
ASP.NET is a server technology. These controls run on the web server, not on the client, in the browser.
Upvotes: 1