Click here to Skip to main content
15,897,891 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I am new to ASP.NET and currently have started to learn it.
Kindly tell me the names of some Server Side Controls and Client Side Controls.

Thanks!
Posted
Updated 16-Apr-10 3:24am
v2

1 solution

For a start, 2 things:

  1. Controls having runat="server" become a server side control (thus accessible in code behind)
  2. Controls that are created in code-behind are server side controls

All ASP.NET controls are server side and HTML controls are Client Side. You can turn HTML controls into server side by assigning runat=server attribute.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900