omposite control maintainence

  • Thread starter Thread starter Mark Goldin
  • Start date Start date
M

Mark Goldin

In order to maintain my composite controls I will need to modify them from
time to time. Are there special requirements for composite controls
development to make sure that any change to composite control will be
reflected on any page the control has been used on?
 
In order to maintain my composite controls I will need to modify them
from
time to time. Are there special requirements for composite controls
development to make sure that any change to composite control will be
reflected on any page the control has been used on?
Is versioning what you're looking for? Any new version you should update
your AssemblyInfo file as I assume you're distributing them as a dll.
Then the user code will compile against the version they want....they can
update when they want.
 
Here is a problem I have.
I am modifying my custom control during a day many times.
After every modification I have to remove the control from the form, remove
reference to a dll and place control back to form in order to pick up the
changes.
Is that because I am not implementing versioning?
 
Back
Top