What is the difference between custom control and web
control?
Answer Posted / rathi
Usercontrol:
1) User control can be used for the Reusable purpose only.
2) Once you create User control that can be access in
current project.
3) User control extenction is .ascx file.
4) It can be visible in Solution explorer.
5) It is Locally used.If you want used this control in any
page just drag and drop from Solution or Register that
particular page like
<%@ Register TagPrefix="scott" TagName="header"
Src="Controls/Header.ascx" %>
<%
Custom Control:
1) Custom control can used for Globale purpose like Tollbox
controls.
2) custom control can created extenction file is .dll .
3) It can Add to Toolbox like
Right click on toolbox add->choose itemes->select path of
file.
4) custom control If you want used in any forms just you
can drag and drop like normal control.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Explain the difference between the while and for loop.
When we go for html server controls and when we go for web server controls?
Explain me what are the deferred execution and the immediate execution in linq?
What is garbage collection? Explain the difference between garbage collections in .net 4.0 and earlier versions?
Explain about Behavioral design pattern?
Explain difference between panel and groupbox classes using .net?
Explain me why do we use msmq?
what is machine key error in .NET how can we solve it?
Where does the gac exist ?
What is loosely coupled solution in.net?
How is meant by dll in .net?
Which file is taken by compiler when we have both file Application and Server Configuration file?
What is difference between .net and .net core?
What is meant by managed and unmanaged code?
What is a .net class?