Posts

Showing posts with the label Bind List Items To a Grid Programatically

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));             ...