I'm stuck on something and I've been trying to find some examples on it. I'm
trying to show the data to my users as such:
year1 year2
Q1 Q2 Q1 Q2
Smith
my dataset looks like this:
<?xml version="1.0" standalone="yes "?>
<NewDataSet>
<Table>
<year>2006</year>
<SalesName>Smit h</SalesName>
<Q1>25</Q1>
<Q2>50</Q2>
</Table>
<Table>
<year>2005</year>
<SalesName>Smit h</SalesName>
<Q1>25</Q1>
<Q2>50</Q2>
<Table>
is there any possible way with either the gridview, repeater, datalist,
anything, that I can use to to show my data side by side? Any examples would
help as well and be greatly apprecaited.
trying to show the data to my users as such:
year1 year2
Q1 Q2 Q1 Q2
Smith
my dataset looks like this:
<?xml version="1.0" standalone="yes "?>
<NewDataSet>
<Table>
<year>2006</year>
<SalesName>Smit h</SalesName>
<Q1>25</Q1>
<Q2>50</Q2>
</Table>
<Table>
<year>2005</year>
<SalesName>Smit h</SalesName>
<Q1>25</Q1>
<Q2>50</Q2>
<Table>
is there any possible way with either the gridview, repeater, datalist,
anything, that I can use to to show my data side by side? Any examples would
help as well and be greatly apprecaited.
Comment