The point is I have used GridView in my project.
And I have assigned the Values to GridView using the SQLConn, SQlDataAdapter and DataSet
GridView1.DataSource=ds;
GridView1.DataBind();
The point is that the output shows the column name of the tables which is unfriendly for end users.
How can I change it?
Use your own column of GridView and can assign the Header text of the gridview. Go to Properties of the GridView–>Columns–>Add the column and set the DataBound to the DB Column name and Header Text Property.
And Dont forget to set the AutoGeneratedColumns property to false of the gridview