在您的 SharePoint 2010 网站中实施面包屑导航?
有没有人有任何示例代码或优秀的文章链接,显示了 SharePoint 2010 网站的面包屑导航的实现?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有人有任何示例代码或优秀的文章链接,显示了 SharePoint 2010 网站的面包屑导航的实现?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
Technet 说此
面包屑导航在网页顶部显示一组动态生成的链接,以向用户显示其在网站层次结构中的当前位置。通过使用 SharePoint Designer 2010 或 Visual Studio 2010,您可以配置面包屑导航控件。例如,您可以指定自定义导航提供程序,并且可以从页面布局中删除面包屑导航。
此文章讨论创建自定义导航提供程序。
这是一个可以添加到 CodePlex 上找到的共享点的控件 (mavention)
Technet says this
Breadcrumb navigation displays a dynamically generated set of links at the top of Web pages, to show users their current position in the site hierarchy. By using SharePoint Designer 2010 or Visual Studio 2010, you can configure the breadcrumb navigation control. For example, you can specify a custom navigation provider, and you can remove breadcrumb navigation from a page layout.
This article discusses creating a custom navigation provider.
This is a control that you can add to sharepoint found on CodePlex (mavention)
好的,
这是 mavention-breadcrumb 部署。
我按照博客上描述的方式执行此操作时遇到了一些问题,并向开发人员寻求帮助。
因此
1) 将 maventionsimplesitemappath.wsp 解决方案复制到您网站的 BIN 目录
2) 在 sp_powershell 上添加 wsp-solution (stsadm -0 addsolution …)
3) 转到中央服务器管理/场解决方案并部署我们之前添加的解决方案
4)在sp_designer(或其他)中打开网站的母版页并插入注册代码和控制代码(您可以从上面的博客复制/粘贴它)
就是这样!
如果您仍然遇到像我几天前那样的权限问题,请尝试此操作(来自解决方案开发人员和博客所有者的提示)
maventionsimplesitemappath.wsp 应在此处提及如果 PermissionSetName 处于“Nothing”状态,请将其更改为“FullTrust”,
希望您的权限问题现在得到解决
OK,
here is a short HowTo for the mavention-breadcrumb deployment.
I had some problems doing it the way it's described on the blog and asked the developer for help.
So
1) copy the maventionsimplesitemappath.wsp solution to your website's BIN-Directory
2) add the wsp-solution over the sp_powershell (stsadm -0 addsolution …)
3) GoTo central server administration/farm solutions and deploy the solution we just added before
4) open the website's masterpage in sp_designer(or other) and insert the register- and control-code (you can copy/paste it from the blog above)
that's it!
If you still got porblems with permissions like I had some days ago try this(tipp from the solution-developer & blog owner)
<trustLevel name="WSS_Custom"..
<CodeGroup ...>
maventionsimplesitemappath.wsp should be mentioned here</CodeGroup>
<CodeGroup class="FirstMatchCodeGroup" version="1" PermissionSetName="Nothing">
change the PermissionSetName to "FullTrust" if it's on "Nothing"
hope your permission-problems are solved now