如何使用客户端对象模型获取当前的网页?
我尝试使用客户端对象模型获取当前的网络。 我无法得到这个..请引导我找到它
我尝试使用下面的代码它不起作用..
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当前的 Web 仅适用于在 SharePoint 上下文中执行的服务器端代码。在 ClientContext 中,您可以使用以下代码获取所需的 Web,它会为您提供由您在 ClientContext 类中提到的 URL 引用的 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.