Web Parts personalization is enabled by default on Web Parts pages. However, you might want to disable it in certain cases. For example, you might have a website where many pages use Web Parts controls and personalization. There might be certain pages where you want the benefits of Web Parts features such as modular layout and the ability to create connections between static Web Parts controls, but you also want the pages to remain read-only, meaning that users cannot personalize or modify them. In such cases, you can disable personalization using the
Disabling Web Parts Personalization
To disable Web Parts personalization for a page
-
Open the Web Parts .aspx page and locate the <asp:webpartmanager> element.
-
Add the personalization-enabled attribute to the <asp:webpartmanager> element, and set its value to false, as in the following code example.
В Copy Code <asp:webpartmanager runat="server" id="wpmgr1" personalization-enabled="false" />
Personalization is now disabled on the page.