从 Web 部件获取当前 SPWeb

发布于 2024-09-19 15:28:05 字数 150 浏览 2 评论 0原文

我正在开发一个要在 SharePoint 中使用的 WebPart,它将显示文档库中的文档列表。为此,我认为我需要引用托管 Web 部件的 SPWeb 对象。不幸的是,我不知道如何从 WebPart 中访问当前的 SPSite 或 SPWeb。我如何从 WebPart 中访问这些内容?

I'm working on a WebPart, to be used in SharePoint, that will display a listing of documents within a document library. To do so, I believe I need to reference the SPWeb object for which the web part is hosted on. Unfortunately, I don't see how to access the current SPSite or SPWeb from within a WebPart. How would I access these from within a WebPart?

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

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

发布评论

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

评论(1

白鸥掠海 2024-09-26 15:28:05

使用静态 SPContext.Current属性来访问您的 SharePoint 环境。从 SPContext 您可以访问当前的 SPWebSPSite

SPWeb myWeb = SPContext.Current.Web;
SPSite mySite = SPContext.Current.Site;

Use the static SPContext.Current property to get access to your SharePoint environment. From SPContext you can get access to both the current SPWeb and SPSite.

SPWeb myWeb = SPContext.Current.Web;
SPSite mySite = SPContext.Current.Site;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文