iis - running classic asp alongside .net -
i work on site built in .net accesses classic asp pages (on same server) via iframes.
to pass session use iframe thew classic asp page querystring values, , sets qs values classic asp session.
one of our customers has sent http archive confirms iframe can take 6 minutes load. here content of iframe
<% session("userid") = request.querystring("s") session("customerguid") = "{" & ucase(request.querystring("t")) & "}" %>
can think of reason why take 6 minutes load?
i suppose possible reason -- web server busy (too many connection/active users, not enought ram or cpu busy).
also, in asp (classic asp) web site -- special inside global.asa ? using it?
Comments
Post a Comment