作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试获取部署在 sharepoint 3.0 中的网页上的 webpart 列表。有没有办法从共享点内容数据库中检索它,或者我可以以编程方式进行检索?
最佳答案
您可以使用 SPWebPartManager 遍历页面中的 Web 部件列表。
见 this MSDN example .
编辑:
这可能是一个更好的例子:
private static void GetWebParts()
{
using (SPSite site = new SPSite("<YOUR SITE URL>"))
{
using (SPWeb web = site.OpenWeb())
{
SPFile file = web.GetFile("default.aspx"); // or what ever page you are interested in
using (SPLimitedWebPartManager wpm = file.GetLimitedWebPartManager(System.Web.UI.WebControls.WebParts.PersonalizationScope.Shared))
{
foreach (WebPart wp in wpm.WebParts)
{
Console.WriteLine("Web part: {0}", wp.Title);
}
}
}
}
}
关于sharepoint - 检索页面上的 Web 部件列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1522046/
我是一名优秀的程序员,十分优秀!