Hello,
I am having an unexplained issue with setting a scripttimeout.
In IIS it's set to a minute and a half.
But when i make a request, it times-out after about 5 minutes.
I have an ajax application.
I make a jquery ajax request (the ajax request's timeout is also a minute and a half)
The browser successfully cancels the request after that amount of time, but the request is still executing on iis for a few minutes (verified using performance monitor asp counters)
I suspect the issue is with a com object i'm using.
It's a c++ dll that sends all the requests to the DB. I think that it's keeping the request open regardless of wheather or not the browser has closed the connection, and that also makes the asp scripttimeout value not do anything.
Can someone shed some light on this issue?