I have one data grid,I want to Hide last entire column of data grid How to do开发者_运维问答 this... Iam using Asp.net1.1
YourGridView1.Columns[LastColumnIndex].Visible = false;
LastColumnIndex should be the index of the last column
I have one data grid,I want to Hide last entire column of data grid How to do开发者_运维问答 this... Iam using Asp.net1.1
YourGridView1.Columns[LastColumnIndex].Visible = false;
LastColumnIndex should be the index of the last column
精彩评论