SatishPutcha
Programmer
Hello Everybody
I am creating a report(using ASP only) of products and their quantities. There are 1200-odd products to be displayed.
As of now the report takes around 15-20 seconds to load.
I also need to calculate the quantities on Customer Orders(ordered but not yet delivered).
The SQL tables are:
tblProducts->ProductID, ProductName, Store wise quantities
tblOrderDetails->OrderID, ProductID, QuantityOrdered
tblItemsDelivered->OrderID, ProductID, QuantityDelivered
So I should show the (SUM(QuantityOrdered) - SUM(QuantityDelivered) for a Product besides other Product Name, Store-wise quantities.
To allow Response.Flush I am creating a <table> for every 50 products. I dont think I can use paging since the users would like to print it all out.
So, my question is what would be the fastest way to display these 1200-odd products and their quantities all on one page? Can it be done in say 5 secs or less?
Any help will be greatly helpful
~Satish Kumar
I am creating a report(using ASP only) of products and their quantities. There are 1200-odd products to be displayed.
As of now the report takes around 15-20 seconds to load.
I also need to calculate the quantities on Customer Orders(ordered but not yet delivered).
The SQL tables are:
tblProducts->ProductID, ProductName, Store wise quantities
tblOrderDetails->OrderID, ProductID, QuantityOrdered
tblItemsDelivered->OrderID, ProductID, QuantityDelivered
So I should show the (SUM(QuantityOrdered) - SUM(QuantityDelivered) for a Product besides other Product Name, Store-wise quantities.
To allow Response.Flush I am creating a <table> for every 50 products. I dont think I can use paging since the users would like to print it all out.
So, my question is what would be the fastest way to display these 1200-odd products and their quantities all on one page? Can it be done in say 5 secs or less?
Any help will be greatly helpful
~Satish Kumar