Export Gridview to PDF Get link Facebook X Pinterest Email Other Apps November 29, 2012 http://www.dotnetspider.com/resources/29759-Exporting-GridView-PDF.aspx Read more
Using the SharePoint ‘Person or Group’ field in code Get link Facebook X Pinterest Email Other Apps November 27, 2012 string[] Groupname = PLPSurveyAttendees.CommaSeparatedAccounts.Split(','); string Users = string.Empty; foreach (string survueygroupname in Groupname) { SPGroup ogrp = oWeb.Groups[survueygroupname]; User... Read more
Delete SharePoint Lists Programmatically Get link Facebook X Pinterest Email Other Apps November 19, 2012 using (SPSite osite = new SPSite("SiteURL")) { using (SPWeb oweb = osite.OpenWeb()) { SPListCollection olistcoll = oweb.Lists; Hashtable ht = new Hashtable(); foreach(SPList olist in olistcoll) { if (olist.Title.StartsWith("Test")) { ht.Add(olist.ID, olist.Title); ... Read more