hi all
i have such scenerio: i have my data in db and i will be creating a report. the first column of the report will keep the number of some item, second column will be the number of another item etc.
so there is no tabular data, i have several calculations and the tricky part is i have to group all these by month. so user will select a start date and an end date. depending on the selection the report will be created in below format:
say start date is 1/1/2005, end date is 9/1/2005
month col1 col2 col3 ....
------ ---- ----- -------
jan 05 4 5 0
feb 05 3 2 2
mar 05 0 1 0
....
sep 05 4 5 5
my question is, what is the best way of doing this? i dont think i can use datagrid or datalist. How about repeater? or is there something else i can use to accomplish this easily. Once i did it by using a real nasty code in html that creates table rows etc. But i want to do it by using some native web component and with less effort.
Any light will greately be appreciated.
thank you
-shane
i have such scenerio: i have my data in db and i will be creating a report. the first column of the report will keep the number of some item, second column will be the number of another item etc.
so there is no tabular data, i have several calculations and the tricky part is i have to group all these by month. so user will select a start date and an end date. depending on the selection the report will be created in below format:
say start date is 1/1/2005, end date is 9/1/2005
month col1 col2 col3 ....
------ ---- ----- -------
jan 05 4 5 0
feb 05 3 2 2
mar 05 0 1 0
....
sep 05 4 5 5
my question is, what is the best way of doing this? i dont think i can use datagrid or datalist. How about repeater? or is there something else i can use to accomplish this easily. Once i did it by using a real nasty code in html that creates table rows etc. But i want to do it by using some native web component and with less effort.
Any light will greately be appreciated.
thank you
-shane