What is different between User Control and Web Control and
Custom Control?
Answers were Sorted based on User's Feedback
Answer / santhi sri
user control
1)created by user,easy to create difficult to use.
2)cannot be added to toolbar
3)a seperate copy of the control is required each
application
custom control:
1)they are predifined
2)can be added to toolbar
3)one single copy of control ia required
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / prabhakar.
A user control is made up of existing controls. It is also
sometimes referred to as a composite control because of this
fact. A typical example is a login form. The form and all of
the logic is contained within this 'reuseable' user control.
A custom control is a control that you create. In windows
forms this means overriding the OnPaint method as in your
example above. Custom controls do not have the same level of
design time support as user controls do (ie dragging and
dropping existing controls, etc). Custom controls are
generally thought of as reuseable components that can be
added to the toolbox of visual studio, so they would have
more generic functionality to fit across projects (e.g. a
round button).
| Is This Answer Correct ? | 0 Yes | 2 No |
what is way of loading data in ef (entity framework)?
Will c# 3.0, vb.net 9.0, atlas, or linq be included in the .net framework 3.0?
What are the advantages of razor view engine?
How to create an alias name for a namespace?
If we write return statement in finally block will it works fine or throws any error?
what is model first approach?
Explain peek method in tempdata in asp.net mvc?
What are the new features 3.5 framework against with the tool?
What type of filter does outputcacheattribute class represents?
Is it possible to use multipe inheritance in .net
I have a GridView on web form, and a column in a grid is a linkbutton to open popup..., my problem is when i click on link button in a gridview popup opens as well works fine. but when i click on link button once again my popup window doesnt open. Can any one help please...
What is code first? : Entity framework