[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.buildingcontrols

Problem with order that properties are set from aspx page

cope.andrew

6/7/2007 1:48:00 PM

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?

Cheers

Andy

1 Answer

John Saunders [MVP]

6/7/2007 5:47:00 PM

0

<cope.andrew@gmail.com> wrote in message
news:1181224109.548543.39330@q69g2000hsb.googlegroups.com...
> 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]