ICode9

精准搜索请尝试: 精确搜索
  • SharePoint Online保存站点模板的方法2019-05-07 14:55:19

    SharePoint Online上,在站点设置页面,默认没有将站点保存为模板这个选项。 这个功能需要使用designer打开,使用designer连接站点,然后选择Ribbon上的"Site Options", 修改SaveSiteAsTemplateEnabled为true: 然后通过url访问:https://contoso.sharepoint.com/sites/test/_layouts/15/

  • 客户端开发添加sharepoint凭证2019-04-17 13:38:22

    //1.promiseClientContext context = new ClientContext(siteUrl);NetworkCredential myCredential = new NetworkCredential(account, securepassWord,[domin]);context.Credentials = myCredential;//2.onlineClientContext context = new ClientContext(siteUrl);context.C

  • Asp.net新建Sharepoint文件夹方法2019-04-02 08:50:28

    1 public static void AddSharepointFolder(ClientContext clientContext, string NewFolderName) 2 { 3 try 4 { 5 Web web = clientContext.Site.RootWeb; 6 clientContext.Load(web); 7

  • .Net Console Application读取Sharepoint Document Library方法2019-03-27 17:37:52

    显示列表: ListItemCollection listItemCollection = GetListItemCollection();if (listItemCollection != null){ if (listItemCollection.Count > 0) { }} 得到列表:得到全部子文件夹及文件 1 public static ListItemCollection GetListItemCollection() 2 {

  • SharePoint 2010 vs SharePoint 20132019-03-14 22:44:57

    * From a document collaboration perspective, the structures of both versions are the same – so if you create a metadata architecture for documents in 2010 it should be fully upgradable to 2013. * The most significant upgrades in document management are in

  • SharePoint REST 服务获取讨论版问题2019-02-11 10:52:27

      前言   最近,有这么个需求,需要获取讨论版里的问题,然后汇总,这里就考虑用REST服务了。   1.我们先创建这么一个讨论版列表,然后添加一些问题,如下图:   2.然后需要开发REST服务代码了,如下图:   3.如何获取ContentTypeId呢,只需要进入列表设置,找到内容类型一栏,然后点进去相应

  • Office 365:如何为OneDrive for Business的安全性保驾护航?2019-01-29 22:55:07

    近期再与客户讨论Office 365管理方案时,客户提到作为Office 365 管理员的一些痛点,其中痛点之一是他要对公司的知识管理的安全性负责,其中有一项就是科研中心的部分用户能够保证受邀访问SharePoint Online的Site Collection读取数据,但部分用户需要禁用OneDrive for Business的使用,但不

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有