hi,
I designed registration form in ASP.NET using c# .In that i used gridview to display entered details.Is it possible to change display order ,for instance , existing order is age,id,name but i need this order id,name,age.
I like to show many students are entering details by click a button. Is it possible to count items stored in gridview.
thanks in advance
Rajendra DeopuraPosted Dec 27, 2008, 7:46 AM
Set the AutogenerateColumns property to false for GridView. Add Columns Collection. Within this Columns Collection add Bound Fields for each of the field you wanr to display. Here is an example :
I think this will clear your doubt.
Thanks