Posts

Showing posts with the label Sharepoint 2013 Costoum Code to bind a sharepoint list to a Grid

Bind the List Data to a DataGird Control

  protected   override   void   CreateChildControls ()             {                  base .CreateChildControls();                        SPWeb  site =  SPControl .GetContextWeb(Context);                  SPList  List = site.Lists[ " Personel " ];                  SPListItemCollection    Listitems  = List.Items;                  DataTable   MyTable  = Listitems.GetDataTable();                        Data...