Forum Moderators: open

Message Too Old, No Replies

Reporting

Web reporting

         

hazee

6:05 am on May 28, 2005 (gmt 0)

10+ Year Member



Hi guys!

How can I make reports on my website.

Any idea.

carguy84

3:55 am on May 31, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



ummmm....what kind of reports? traffic? stocks? sports? news?

hazee

10:09 pm on Jun 6, 2005 (gmt 0)

10+ Year Member



I need to take the report of Ledger of all the customers. I want each customer Ledger to be printed on different page with same page headers and page footers. Only the the Name of the customer and his ledger information would be changed.

One cutomer's Ledger can go for more than one page, In that case it must print the data on the same number of pages and start the next customer page after this customer's ledger finishes.

Infact I am looking for complete reporting system as we can make in Crystal Reports with Classic Visual Studio or .net.

Hope its clear now. Any idea how to do?

txbakers

12:25 am on Jun 7, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You can learn how to use Crystal, or use Actuate for prebuilt tools.

I do all my reports in old fashioned HTML and ASP and SQL.

hazee

4:47 am on Jun 7, 2005 (gmt 0)

10+ Year Member



I do all my reports in old fashioned HTML and ASP and SQL

This is what I want ... Can i have the script as an example to understand?

txbakers

10:58 am on Jun 7, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



no, but I'll share the idea.

run a SQL query to get the data.

write a header line

Do a while not EOF loop to display the data on the screen.

If you want subheaders set an inner loop on one of the fields.

hazee

9:06 pm on Jun 17, 2005 (gmt 0)

10+ Year Member



I tried but couldnt. Can you help me to make headers and subheaders.

Will be thankful if you can share any dummy source code.

regards,
Thnx.

aspdaddy

9:53 am on Jun 18, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



For all the paging/printing etc sounds like you need a reporting tool. If you have a SQL licence then you can use SQL Reporting Services for free. It does the kind of reports you are after.

You do need .net installed on the machine that designs the reports.

hazee

9:34 pm on Jun 18, 2005 (gmt 0)

10+ Year Member




run a SQL query to get the data.

write a header line

Do a while not EOF loop to display the data on the screen.

If you want subheaders set an inner loop on one of the fields.

What would u say about this?