Posts

Showing posts from February 9, 2015

Bind List Items To a Grid Programatically

private void GetHRNewsletters()         {             using (SPSite osite = new SPSite(SPContext.Current.Web.Url))             {                 using (SPWeb oweb = osite.OpenWeb())                 {                     string currentYears = DateTime.Now.Year.ToString();                     DataTable dtListItem = new DataTable();                     dtListItem.Columns.Add("Title", typeof(string));                     dtListItem.Columns.Add("URl", typeof(string));                     dtListItem.Columns.Add("Month", typeof(string));             ...

Bind SPLIst to Grid in Sharepoint 2013

private void GetCorporateOverview()         {             using (SPSite osite = new SPSite(SPContext.Current.Web.Url))             {                 using (SPWeb oweb = osite.OpenWeb())                 {                     string currentYear = DateTime.Now.Year.ToString();                     int year = Convert.ToInt32(currentYear);                     string yearvalue = Convert.ToString(year - 1);                     SPList olist = oweb.Lists.TryGetList("CorporateOverview");                     SPQuery querry = new SPQuery();             ...

String Builder using C# in SharePoint 2013

 string imagepath;         string attachmentAbsoluteURL;         private void GetClientTestimonial()         {             DataTable dt = new DataTable();             dt.Columns.Add("Attachments", typeof(string));             dt.Columns.Add("Title", typeof(string));             dt.Columns.Add("Description", typeof(string));             dt.Columns.Add("htmlable");             using (SPSite osite = new SPSite(SPContext.Current.Web.Url))             {                 using (SPWeb oweb = osite.OpenWeb())                 {                     string currentYears = DateTime.Now.Ye...