Reputation: 11652
I got a new task for a different kind of gridview. How do I create this type of gridview?
Upvotes: 1
Views: 203
Reputation: 5358
It can be done using two nested gridviews: a gridview in the template field of another gridview.
Upvotes: 1
Reputation: 15253
Just create the HTML table using TemplateFields:
http://msdn.microsoft.com/en-us/library/bb288032.aspx
Better still use a DataList:
http://quickstarts.asp.net/QuickStartv20/aspnet/doc/ctrlref/data/datalist.aspx
Upvotes: 3
Reputation: 8506
A Label accept to use HTML, just put the tags in there starting with <html>
.
Maybe it's possible to do what you want.
Upvotes: -3