Hey All!
I am creating a web forum in C# and have come across a problem whereby i am unable to store two field values in the same cell of a datagrid.
An example of one of the columns in my datagrid looks like the following:
BoundColumn user = new BoundColumn();
user.DataField = "User";
user.DataFormatString = "{0}";
user.HeaderText = "User";
Now if for example i wanted to add the number of posts that the user has posted underneath their username how would i incorporate this "posts" field into the same datagrid cell.
Thanks in advance
GavW
I am creating a web forum in C# and have come across a problem whereby i am unable to store two field values in the same cell of a datagrid.
An example of one of the columns in my datagrid looks like the following:
BoundColumn user = new BoundColumn();
user.DataField = "User";
user.DataFormatString = "{0}";
user.HeaderText = "User";
Now if for example i wanted to add the number of posts that the user has posted underneath their username how would i incorporate this "posts" field into the same datagrid cell.
Thanks in advance
GavW