I need to save some user data (string) in my Sharepoint web part. I think the hidden properties of a webpage should do the trick. Tried with the following webpart property attributes:
[WebBrowsable(false)]
[Bindable(true)]
[WebPartStorage(Storage.Personal)]
[Personalizable(PersonalizationScope.User)]
But I observe in the web part that the data stored is not user-specific. Any help?
source
share