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