DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Change Caption Of The Column
Change the caption for the column. Add following code to change caption of the datatable column
DataColumn col;
mytable.Columns.Add("StudentName", System.Type.GetType("System.String"));
col.Caption = "Name";





