Tagged Questions

1
vote
1answer
124 views

Accessing all of the columns of an AutoGenerated GridView - ASP.NET

I have a simple Gridview with AutoGenerate on. I need to know how to access these columns, because the column count is always zero, even though they show in the page. I found something about an ...
1
vote
2answers
1k views

DataGridView Autogeneratecolumns as TextBox instead of label

How can I have a datagridview that will autogenerate a textbox instead of a label?
0
votes
0answers
54 views

How to replace/modify autogenerated columns with template columns in a gridview for ASP.net

I need to create a gridview in asp.net from autogenerated columns. I have an SQL query that pivots a table and creates a variable number of columns based on the number of different brands in the ...
0
votes
2answers
1k views

C# Datagridview - Turn off AutoGenerateColumns when binding to XML file?

I am binding an XML file to a DataGridView. I don't want the columns to be auto-generated, in fact I want to generate them myself. Is there a way of turning off the auto generating columns feature and ...