T
Toni
I've got a very small ASP.NET script running on ASP.NET 3.5. It is passed parameters
from a classical ASP (VBScript) page using XMLHTTP and a value is returned. So far, it
look like this:
<%@ Page Language="VB" %>
<%
response.ContentType="text/HTML"
dim strData
strData = Request.Form("invar")
Response.write (value calculated from "invar")
%>
While this seems small, I really need this to execute with as little overhead as
possible - right now, the first time I call any ASP.NET script on my server (even "Hello
World"), there is a 4 second long delay and I don't know why!
Can anyone tell me how I can get this script to execute with as little over overhead as
possible, and eliminate that 4 second delay???
from a classical ASP (VBScript) page using XMLHTTP and a value is returned. So far, it
look like this:
<%@ Page Language="VB" %>
<%
response.ContentType="text/HTML"
dim strData
strData = Request.Form("invar")
Response.write (value calculated from "invar")
%>
While this seems small, I really need this to execute with as little overhead as
possible - right now, the first time I call any ASP.NET script on my server (even "Hello
World"), there is a 4 second long delay and I don't know why!
Can anyone tell me how I can get this script to execute with as little over overhead as
possible, and eliminate that 4 second delay???