是否可以隐藏功能区的特定部分?
我的要求:
1. Hide s4-ribbonrow but login control should be visible, remaining stuff should be invisible
2. Hide s4-titlerow but search and navigation should be visible
是否可以隐藏功能区的特定部分?
我的要求:
1. Hide s4-ribbonrow but login control should be visible, remaining stuff should be invisible
2. Hide s4-titlerow but search and navigation should be visible
如果您允许网站上的匿名访问。只有登录的用户才能完成功能区。
所有其他匿名用户将看到仅带有“登录”链接的功能区条,该链接将提供登录的可能性。
您使用什么 SharePoint?服务器还是基金会?
如果服务器可以自定义母版页添加
<asp:LoginView ID="LoginView1" runat="server">
<anonymoustemplate>
<style type="text/css">
#s4-ribbonrow { display: none; }
</style>
</anonymoustemplate>
</asp:LoginView>
给它。这将对匿名用户完全隐藏功能区。
所有其他用户都必须调用其中一个管理页面才能登录...
希望能帮助到你,
安德鲁