I have a sqldatasource of data in 3 columns like this
Orange | 0 | 1
Apple | 3 | 4
Pear | 2 | 1
Of course it is in table form and if I use Gridview etc it will render out a lot of <tr><td> in between.
I want to display and render this data out from aspx onto page without any <tr><td> table code or <br/>on HTML in between, as follow, clean:-
[("Orange", 0, 1), ("Apple", 3,4), ("Pear",2,1)]
What is the quickest way to do this ? Pls help, thanks
Go to the complete details ...