Hi,
Thanks for the reply.
I'm using a HashTable as the datasource. The property is set like this:
public object HTSource
{
get{return _HTSource; }
set
{
if(value is Hashtable)
{
_HTSource = value;
this.DataSource = (Hashtable)_HTSource;
}
}
}
What's interesting is if I don't set the autopostback property, the
_IsChanged value is available in subsequent postbacks. But if autopostback
is true, it the value is available for only the auto postback and not
subsequent postbacks. If you need more information by all means ask.
"Mark Rae [MVP]" <> wrote in message
news:en%...
> "Steve Hershoff" <> wrote in message
> news:...
>
>> If this is the case, would you have any suggestions on how to force a
>> control to remember internal values between page posts, if possible?
>
> How are you populating the DropDownList...?
>
>
> --
> Mark Rae
> ASP.NET MVP
> http://www.markrae.net