<cope.andrew (AT) gmail (DOT) com> wrote
Quote:
Hi
I've developed an ASP.NET server control with 2 properties, PropertyA
and PropertyB. The setter for PropertyB uses the value of PropertyA to
perform some checking when set at designtime.
When the aspx page is opened in the designer, the properties are read
in from the aspx markup but the order the properties are set can't be
guarenteed. Sometimes the setter for PropertyB is called before the
setter for PropertyA and the code falls over.
Is there a way, at designtime, to get round this? E.g. force one
property to be set from the designer before another etc? |
I don't think there's a way to do this, and it would not be a good idea.
What would happen if the designer weren't used? What if the properties were
set in markup?
The order of setting properties should not matter. If you need property A in
property B, you should first check to see if it has been set.
--
John Saunders [MVP]