definition and differences of user and web user controls ?
I Want to know the what is difference between user controls and web user controls?
Answers (3)
0
Refer this blog
http://www.go4expert.com/articles/creating-web-user-controls-aspnet-t30203/
Accepted 0
Thank You ALL
0
UserControl: A custom control, ending in .ascx, that is composed of other web controls. Its almost like a small version of an aspx webpage. It consists of a UI (the ascx) and codebehind. Cannot be reused in other projects by referencing a DLL.
WebControl: A control hosted on a webpage or in a UserControl. It consists of one or more classes, working in tandem, and is hosted on an aspx page or in a UserControl. WebControls don't have a UI "page" and must render their content directly. They can be reused in other applications by referencing their DLLs.