I'm trying to list all subscriptons that belong to a specific user. I have made my own MySubscriptionList class which derives from SubscriptionList. It contains an own SubscriptionInfo object tied to a specfic user, and I have overidden CreateChildControls and made a SaveSubscription event method. Everything works fine except that I cannot save the new subsription settings for a user. SaveSubscription() gets called, but mysubscirptioninfoobject.SubsribeTo() and mysubscirptioninfoobject.UnSubscribe() seems to have no effect.
Anyone?
Any changes made to personalization for the current user is saved when the page unloads. If you are loading another user based on for example username you have to manually save your changes to the PersonalizedData class (call the Save method).