Hello,
I have an ASP classic app running on IIS 6.0 and Windows Server 2003.
A form in the app allows employees to upload large binary file. For upload we are using AspUpload 3rd party software. While uploading an ISO image 600 MB, ASP gives me a blank page (page source displays <html><body></body></html>)
This happens after ~3 minutes (~200 seconds).
I suspected that a timeout occurs for such large file operation so I added
<%
server.scripttimeout=18000
session.timeout=99
%>
on my originating .asp and the handler .asp to no avail.
Do you know what else for me to try?