I have a page that has data as multiple rows, but I want this to be in one row with multiple "columns" instead. I want to use an asp:someElementX since my backend logic can stay the same (if possible)
The current state is:
data1
data2
data3
My desired state is
data1 data2 data3
I currently use <asp:Table ID="Data" runat="server" />
what is the equivilent to asp:Table for what I am looking for?