如何使用客户端对象模型获取当前的网页?

发布于 2024-09-13 11:22:21 字数 171 浏览 3 评论 0原文

我尝试使用客户端对象模型获取当前的网络。 我无法得到这个..请引导我找到它

我尝试使用下面的代码它不起作用..

ClientContext context = new ClientContext(ApplicationContext.Current.Url);

i tried to get the current web using client object model.
i am not able to get that..please guide me to find it

I tried with the below code its not working..

ClientContext context = new ClientContext(ApplicationContext.Current.Url);

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

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

发布评论

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

评论(1

私藏温柔 2024-09-20 11:22:26

当前的 Web 仅适用于在 SharePoint 上下文中执行的服务器端代码。在 ClientContext 中,您可以使用以下代码获取所需的 Web,它会为您提供由您在 ClientContext 类中提到的 URL 引用的 Web。

            ClientContext context = new ClientContext(ApplicationContext.Current.Url);
            var web = site.Web;
            site.Load(web);

Current Web works only for the Server Side code that executes inside SharePoint context. When in ClientContext you can get the web you want using the below code, it gives you the web that is refered by the URL you mentioned in the ClientContext Class.

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