Let say I have a GridView and databind to a list<int>, the gridview will display a column with the int on each row. Then I add another column to the gridview with a textbox on each row.
As below:
322 textbox1
833 textbox2
122 textbox3
Now, how can i display this rows horizontally as below.
322 833 122
textbox1 textbox2 textbox3
Which data control should I use? Or I have to create a table on the fly?
thanks in advance.
As below:
322 textbox1
833 textbox2
122 textbox3
Now, how can i display this rows horizontally as below.
322 833 122
textbox1 textbox2 textbox3
Which data control should I use? Or I have to create a table on the fly?
thanks in advance.