如何以编程方式设置 SharePoint 网站集搜索中心属性?

发布于 2024-07-07 18:01:13 字数 98 浏览 10 评论 0原文

我有一个网站集,我想将搜索中心值设置为与另一个网站集相同。 网站集是在代码中创建的,因此我需要能够在创建网站集后设置该属性。

我怎样才能以编程方式做到这一点?

I have a site collection and I want to set the search center value to be the same as another site collection. The site collection is created in code, so I need to be able to set the property after the site collection has been created.

How can I do this programatically?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墨落画卷 2024-07-14 18:01:14

此设置存储在 SPWeb 对象的属性包中。 您可以按如下方式更新:

using (SPSite site = new SPSite("http://server/site"))
using (SPWeb web = site.OpenWeb())
{
  web.AllProperties["SRCH_ENH_FTR_URL"] = "/searchcenter/pages";
  web.Update();
}

This setting is stored in the property bag of the SPWeb object. You can update it as follows:

using (SPSite site = new SPSite("http://server/site"))
using (SPWeb web = site.OpenWeb())
{
  web.AllProperties["SRCH_ENH_FTR_URL"] = "/searchcenter/pages";
  web.Update();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文