definition and differences of user and web user controls ?
I Want to know the what is difference between user controls and web user controls?
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.
Akshay PhadkePosted Jun 9, 2016, 12:30 PM
suresh suriPosted Jun 9, 2016, 9:45 PM
Sonu ChaudharyPosted Jun 9, 2016, 4:59 PM
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.