IPersonalizable Interface
Defines additional management capabilities for the application and extraction of personalization state.
Assembly: System.Web (in System.Web.dll)
| Name | Description | |
|---|---|---|
![]() | IsDirty | Gets a value that indicates whether the custom data that a control manages has changed. |
| Name | Description | |
|---|---|---|
![]() | Load(PersonalizationDictionary^) | Loads custom data into a control. |
![]() | Save(PersonalizationDictionary^) | Saves custom properties and internal state information in the control's PersonalizationDictionary object. |
In addition to using the Personalizable attribute on control properties, a control can also implement IPersonalizable for additional management capabilities for the application and extraction of personalization state. For example, controls that need to manage private state information should implement this interface. Controls that access personalized data through complex mechanisms, such as custom cache solutions, data persistence to mainframes, or XML Web services, should also implement this interface.
Important |
|---|
You should not add types based on classes defined in the App_Code directory and then depend on the default binary serialization mechanism. App_Code-based artifacts are not consistently binary-serializable due to the fact that they can have their assembly names changed at random points in time. |
The following code example demonstrates how to use the IPersonalizable interface. The example consists of an .aspx page that references a Web Part control named UrlListWebPart. The following code is the .aspx file for the example.
The following code is the source for the custom WebPart control. This file should be placed in the App_Code directory.
Load the page in a browser. Type in a name to represent a URL, then add an actual URL beginning with http://, and click the Add button to add the URL.
Available since 2.0


