I am working on classic asp script, which when create file button is clicked creates an excel report. Problem is sometimes report is too big and it times out. Due to following code:
<%
Server.ScriptTimeout = 200
%>
One way to solve this issue is just increase the time. That will be very easy solution. But i want to know from some asp experts if there is any other efficient solution to this problem?