Hey all!
I would like to include 2 separate database fields within the same cell of a datagrid. At the moment i successfully including a single field using the following code:
BoundColumn topics = new BoundColumn();
topics.DataField = "Topics";
topics.DataFormatString = "{0}";
topics.HeaderText = "Topics
This results in a column that looks like:
Heading
Topics
When what i want to acheive is:
Heading
Topics
Field2
Could anybody help me with the code for this problem?
Thanks in advance
GavW
I would like to include 2 separate database fields within the same cell of a datagrid. At the moment i successfully including a single field using the following code:
BoundColumn topics = new BoundColumn();
topics.DataField = "Topics";
topics.DataFormatString = "{0}";
topics.HeaderText = "Topics
This results in a column that looks like:
Heading
Topics
When what i want to acheive is:
Heading
Topics
Field2
Could anybody help me with the code for this problem?
Thanks in advance
GavW