borderAndreaVB free resources for Visual Basic developersborder

borderAndreaVB Visual Basic and VB.NET source code resources - Copyright © 1999-2007 Andrea Tincaniborder

AndreaVB | Forum | News | Downloads | Register | Help | Member List | Statistics | Search | PM | Profile

Print This Topic
Previous Topic (how a end user can consume web service ?)Next Topic (how to add column dynamically in datagrid ?) New Topic New Poll Post Reply
AndreaVB Forum : ASP.Net : Datagrid column hide and show ?
Poster Message
tri_inn
Level: Regular User
Registered: 26-08-2002
Posts: 395

icon Datagrid column hide and show ?

I want to how can I programmatically hide and show the particular column of datagrid.
Please tell me with how could I do it in asp.net .

25-03-2004 at 02:19 PM
View Profile Send Email to User Show All Posts | Quote Reply
zimcoder
Level: VB Lord


Registered: 27-10-2003
Posts: 225
icon Re: Datagrid column hide and show ?

You can manipulate the columns collection of you DataGrid to hide or show  any particular column

Here is simple illustrations

//MyDatagrid is a grid that has been bound to a datasource
MyDatagrid.Columns[2].Visible=false;
//Call the DataBind method on your datagrid afer hiding a column

MyDatagrid.DataBind();

This code hides the third column in your datagrid
You can use Column names if your Datagrid's columns have been autogenerated



[Edited by zimcoder on 30-07-2004 at 04:47 PM GMT]

____________________________
BrainBench ADO.NET and ASP.NET Certified Developer

30-07-2004 at 02:46 PM
View Profile Send Email to User Show All Posts | Quote Reply
AndreaVB Forum : ASP.Net : Datagrid column hide and show ?
Previous Topic (how a end user can consume web service ?)Next Topic (how to add column dynamically in datagrid ?) New Topic New Poll Post Reply
Surf To:


Not Logged In? Username: Password: Lost your password?
Partners: Download Actual Software | Free Software Download
borderAndreaVB free resources for Visual Basic developersborder

borderAndreaVB Visual Basic and VB.NET source code resources - Copyright © 1999-2007 Andrea Tincaniborder