What is the Difference between Web User Control and Web
Custom Control?
Answer Posted / developer525
What is the difference between User Control and Custom Control
Custom controls are compiled code(Dlls) easier to
use,difficult to create and can be place in toolbox. You can
drag and drop controls, Attributes of this control are
visually set at design time. A custom control can be used in
multiple application as shared DLLS. Any one can copy DLL of
custom control in bin directory and add reference and use
them. Normally custom controls are designed to provide
custom functionality independent of consuming application.
User controls are similar to those of asp include files easy
to create, can not be placed into the toolbox and dragged
dropped from it. A User controls can share single
application files. Normally designed to provided
functionality that is reusable for the particular application.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How to execute VB.NET PROJECTS,VB6.0 PROJECTS AND write their test cases.Need Reply Urgently
What do you mean by serialization and deserialization?
Why should you use delegate?
Can you please explain the difference between dispose and finalize()?
Explain the advantage of option strict on?
Explain about visual basic?
Write a program to find all text files in a logical drive and return the count of the number of files?
Name a feature which is common to all .net languages?
What are the different types of a stream?
What is the use of assembly?
What is multiple form in vb?
What is the maximum size of the textbox?
What is the difference between custom control and user control?
How do you call a stored procedure in Visual Basic?
What is the difference between a "jagged array" and multidimensional array" ?can anyone show me it practically ?