从 Web 部件获取当前 SPWeb
我正在开发一个要在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用静态
SPContext.Current
属性来访问您的 SharePoint 环境。从
SPContext
您可以访问当前的SPWeb
和SPSite
。Use the static
SPContext.Current
property to get access to your SharePoint environment. FromSPContext
you can get access to both the currentSPWeb
andSPSite
.