[lnkForumImage]
TotalShareware - Download Free Software

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


 

Jeff Rhodes

1/19/2003 7:35:00 PM

I have a property of type Hashtable that I'd like to persist long enough to
read it in my WebControl and use it to produce the desired HTML.
Unfortunately, the property only persists until the form is closed in the
Designer. This is presumably since it does not show up in the tags in HTML
view. Can I set some attributes of the property that will serialize it? My
property currently looks like this:

Public Property XYZ as Hashtable
Get
Return c_XYZ
End Get
Set (ByVal Value as Hashtable)
c_XYZ = Value
End Set
End Property

Thanks for any ideas!

Jeff Rhodes