M
Mike
I'm converting an existing asp application, within the asp app its using 12
SQL queries but showing the results in one table (html). Is there a way to
use these same 12 queries and show the results in one gridview?
Each query is one row of data in the table (current version) So the app is
something like this
Stats jan Feb mar
Monthly Income 12
Monthly Expense 20
Total Monthly Income 32
Quartley Income 350
Quartley Expense 560
Total Quarter Income -210
6 Month Income
6 Month Expense
Total Income for the pass 6 months
and so one, now each row is a seperate query. The 'stat's are hardcoded in
the current asp code and the developer
just created an array for the output and row(0) goes to the monthly income
stat, row(2) goes to the monthly expense and so on.
is there a way to recreate this same output in .NET?
SQL queries but showing the results in one table (html). Is there a way to
use these same 12 queries and show the results in one gridview?
Each query is one row of data in the table (current version) So the app is
something like this
Stats jan Feb mar
Monthly Income 12
Monthly Expense 20
Total Monthly Income 32
Quartley Income 350
Quartley Expense 560
Total Quarter Income -210
6 Month Income
6 Month Expense
Total Income for the pass 6 months
and so one, now each row is a seperate query. The 'stat's are hardcoded in
the current asp code and the developer
just created an array for the output and row(0) goes to the monthly income
stat, row(2) goes to the monthly expense and so on.
is there a way to recreate this same output in .NET?