zoukankan      html  css  js  c++  java
  • 深入浅出SharePoint——页面上添加WebPart(代码篇)

    场景1:添加List View Webpart

     //Add webpart in view by location
                        SPList oList = web.Lists[Constant._CUSTOMER_CONTRACT_LIST_TITLE];
                        ListViewWebPart oListViewWebPart = new ListViewWebPart();
                        oListViewWebPart.ZoneID = "Left";
                        oListViewWebPart.ListName = oList.ID.ToString("B").ToUpper();
                        oListViewWebPart.ViewGuid = oList.Views[0].ID.ToString("B").ToUpper();
                        SPWebPartCollection collWebParts = web.GetWebPartCollection("default.aspx", Storage.Shared);
                        System.Guid guid = collWebParts.Add(oListViewWebPart);
    

      

    场景2:添加自定义WebPart

    //Add webpart in view by location
                            string url = web.Url + "/Lists/SafetyLab/ByLocation.aspx";
                            SPFile file = web.GetFile(url);
                            SPLimitedWebPartManager webPartManager =
                            file.GetLimitedWebPartManager(PersonalizationScope.Shared);
                            Microsoft.SharePoint.WebPartPages.WebPart wpReport = new ALU.C0370A.VPPI.ReportWebPart();
                            webPartManager.AddWebPart(wpReport, "Main", 0);
    

      

  • 相关阅读:
    常见问题汇总
    python的正则表达式
    Python 程序读取外部文件、网页的编码与JSON格式的转化
    第三方仓库PyPI
    文件名称一定不要设置为某些模块名称,会引起冲突!
    迟来的博客
    FENLIQI
    fenye
    Notif
    phpv6_css
  • 原文地址:https://www.cnblogs.com/mingle/p/SharePoint_Webpart.html
Copyright © 2011-2022 走看看