Where the webserver control in asp.net
where the webserver control in asp.net......
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.
Satyapriya NayakPosted Mar 30, 2012, 5:40 AM
Web Server controls are specifically designed to work with Web Forms pages.
Web server controls are created on the server and they require a runat="server" attribute to work. However, Web server controls do not necessarily map to any existing HTML elements and they may represent more complex elements.
Please refer the below link
http://www.w3schools.com/aspnet/aspnet_refwebcontrols.asp
http://delphi.about.com/od/aspnet/l/aa091404a.htm
Thanks
SenthilkumarPosted Mar 30, 2012, 5:43 AM
There are several types of .Net server controls like Standard controls, menu controls, web parts, data controls, etc..,
It belongs to the System.Web.UI.WebControls namespace in ASP.Net.
These controls are designed to render for the web browser.
Stepss:
- Create the new web site and select the ASP.Net web application.
- Click on the default.aspx and click on the designer view.
- You can find the Toolbox and click on that.
You can drag and drop the control to the web form. It will generate the control tag in the .aspx page.
The ASP.Net controls are run at the server side.