如何删除“个性化此页面”选项 WSS 3 中带有功能代码的选项?
如何删除 WSS 3.0 中的“个性化此页面”选项? 如果可能的话,我想用具有 Web 应用程序级别功能的代码来完成此操作。
How can I remove the "Personalize this Page" option in WSS 3.0? I'd like to do it in code with a feature at the web application level if possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是一个权限,可以在 WSS 的 Web UI 中访问:“
站点设置”>“ 人员和组(在用户和权限下)> 站点权限(左侧快速启动栏)> 设置> 权限级别
每个权限级别下都包含一长串权限。 在底部取消选中“个人权限”下的项目(主要是“管理个人视图”)。
我正在研究如何在代码中执行此操作,但我们的项目需要自定义用户组管理,因此我们不会为他们提供管理个人视图的选项。
It's a permission and can be accessed in the web UI of WSS:
Site Settings > People and Groups (under Users and Perms) > Site Permissions (left quick launch bar) > Settings > Permission Levels
Under each Permission Level there is a long list of permissions to include. At the bottom uncheck the items under Personal Permissions (mainly "Manage Personal Views").
I'm doing research on how to do it in code but our project requires custom user group administration so we just won't give them the option to Manage Personal Views.
或者,“个性化此页面”选项仅在包含允许个性化的 Web 部件区域的页面上可见。 如果您使用自定义页面布局,则可以在 Web 部件区域上将“AllowPersonalization”属性设置为 false。
Alternatively, the 'Personalize this Page' option will only be visable on pages containing web part zones that allow personalization. If you are using customised page layouts then you could set the 'AllowPersonalization' property to false on your web part zones.
或者,您可以强制执行共享视图,从而禁用页面上的个性化设置。
要实现此目的,请在任何 Web 部件中的重写 OnLoad() 中执行以下操作:
但是,这通常不被视为最佳实践,因为它可能会影响页面中其他 Web 部件的行为。
Alternatively, you could enforce the shared view, thus disabling personalizations on your page.
To accomplish this, do the following in any webpart, in the overriden OnLoad():
However, this is not generally considered best practice because it could potentially affect the behavior of other webparts in your page.
这是可以做到的,而且非常容易。 打开
c:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\CONTROLTEMPLATES
中的 Welcome.ascx和
add
Visible="False"
工作完美,但会为所有站点全局更改它。 如果需要,可以将相同的代码添加到任何其他部分。
It CAN be done and pretty easily. Open up Welcome.ascx in
c:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\CONTROLTEMPLATES
and underneath
<SharePoint:MenuItemTemplate runat="server" id="ID_PersonalizePage"
add
Visible="False"
works perfectly but will change it globally for all sites. Add the same code to any of the other sections if wanted.