grid view bound column binding with a typeddataset column
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
I had created a single bound column in gridview and i have a typeddatset with column eid and ename. dataset is filled on page_load. I want to bind only ename column of dataset to that bound column o grid. how to do that?? thanks in advance
Gaurav
Hi, You just need to set the AutoGenerateColumns property of GridView to False. Then the GridView will display only the Bound Columns added to it.
Regards, Ujjaval Modi