3
Answers

definition and differences of user and web user controls ?

suresh suri

suresh suri

8y
263
1
I Want to know the what is difference between user controls and web user controls?
Answers (3)
0
Akshay Phadke

Akshay Phadke

NA 16.7k 1.3m 8y
Refer this blog
http://www.go4expert.com/articles/creating-web-user-controls-aspnet-t30203/
Accepted
0
suresh suri

suresh suri

NA 9 806 8y
Thank You ALL
0
Sonu Chaudhary

Sonu Chaudhary

NA 1.7k 106.4k 8y

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.