DavidB
DavidB

Reputation: 2596

running classic asp alongside .net

I work on a site built in .net that accesses classic asp pages (on the same server) via iframes.

To pass session we use an iframe to thew classic asp page with querystring values, and this sets the QS values into classic asp session.

One of our customers has sent a http archive which confirms the iframe can sometimes take up to 6 minutes to completely load. Here is the content of that iframe

<%
    session("USERID") = Request.QueryString("s")
    session("CUSTOMERGUID") = "{" & UCase(Request.Querystring("t")) & "}"
%>

Can anyone think of a reason why this would take 6 minutes to load?

Upvotes: 1

Views: 284

Answers (1)

Zam
Zam

Reputation: 2940

I suppose that possible reason -- your web server too busy (too many connection/active users, not enought RAM or CPU too busy).

Also, in your ASP (classic ASP) web site -- anything special inside Global.asa ? Are you using it?

Upvotes: 1

Related Questions