这两种访问 SharePoint 模型的方法有什么区别?

发布于 2024-07-09 08:45:10 字数 308 浏览 3 评论 0原文

从 ASP.NET 应用程序访问 SharePoint Services 3.0 网站的 SharePoint 模型的多种方法中,有两种似乎非常相似:

  1. SPWeb site = SPControl.GetContextWeb(Context);

  2. SPWeb 站点 = SPContext.Current.Web;

据我了解,这两种方法都需要在 ASP.NET 应用程序中执行,那么它们之间有什么区别,是否存在使用其中一种方法更好的情况?

Out of the several ways of accessing the SharePoint model of a SharePoint Services 3.0 site from an ASP.NET application, two seem to be very similar:

  1. SPWeb site =
    SPControl.GetContextWeb(Context);

  2. SPWeb site = SPContext.Current.Web;

It is my understanding that both of these methods need to be executed from within an ASP.NET application, so what is the difference between them and is there a situation where it is preferable to use one over the other?

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

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

发布评论

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

评论(1

很快妥协 2024-07-16 08:45:10

它们在技术上具有相同的目的,但我建议您使用 SPContext,它是在 WSS V3.0 的对象模型中引入的。 SPControl 类只是为了向后兼容 WSS V2.0

They technically save the same purpose but I recommend you use SPContext, which was introduced in the object model of WSS V3.0. The SPControl class is just there for backwards compatibility with WSS V2.0

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