Using
SQL Server 2000
IIS 2000
IE5.0
InterDev 6
Running IIS and SQLS on a dual P3 800.
IE running on a P4 1.7 over a 100baseT LAN.
And only I (the developer) am hitting this web page.
On the front page there are several pull downs with quite a few items in them (100's), now...
Running the queries that retrieve the data in these pull downs takes milliseconds, transmitting the data over the LAN takes milliseconds.
So why does it take 20 seconds to display the page?
It's because IIS CHUGS through the ASP scripts.
Example
These library function are all in an .inc file.
This paticular function creates a huge string, looping through an ADO recordset creating a <SELECT> tag.
How much faster would it be to move these functions to an activeX dll? Much faster?
Is there any IIS optimisations?
cheers,
Jim.
PS I've got 'till Oct 3rd. Needs to be FAST. Ulp.
SQL Server 2000
IIS 2000
IE5.0
InterDev 6
Running IIS and SQLS on a dual P3 800.
IE running on a P4 1.7 over a 100baseT LAN.
And only I (the developer) am hitting this web page.
On the front page there are several pull downs with quite a few items in them (100's), now...
Running the queries that retrieve the data in these pull downs takes milliseconds, transmitting the data over the LAN takes milliseconds.
So why does it take 20 seconds to display the page?
It's because IIS CHUGS through the ASP scripts.
Example
Code:
Select aa Location<BR>
<%=createBoundComboBox(TableName, DataField, DisplayField, width, blankEntry, etc.)%>
This paticular function creates a huge string, looping through an ADO recordset creating a <SELECT> tag.
How much faster would it be to move these functions to an activeX dll? Much faster?
Is there any IIS optimisations?
cheers,
Jim.
PS I've got 'till Oct 3rd. Needs to be FAST. Ulp.