Click here to Skip to main content
15,915,600 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to hidden/view a Column in a Datalist in web application in c#

pls help me sir........!
Posted

1 solution

Here's the link to a resource which says it is possible.

http://forums.asp.net/t/1304446.aspx/1


Instead of getting into the complications, I suggest you to use a Gridview instead, where you can hide the column in this way

C#
DataGrid1.Columns[0].Visible = false;
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900