views:

182

answers:

1

Hi,

Is there any way of storing a generic dictionary object in an asp.net profile? I have tried using this but it still doesn't like it: http://weblogs.asp.net/pwelter34/default.aspx

Thanks, Nick

+1  A: 

Check out the KeyedCollection. Its a generic dictionary that is serializable to xml. There are some limitations, however.

Will