The opertation has timed out

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to open an ASPX file in a new window which displays a report in PDF format (using SQL reporting service). The query to display the results takes about 3 minutes in the query analyzer. But I am getting operation timed out error in the new window that I open before even before 2 minutes. I use just a binary write for the response that I get in byte format. Can somebody suggest a solution?
 
Hello Shyam,

try change or add this part of your web.config file like this
<system.web>
<httpRuntime executionTimeout ="[seconds]" maxRequestLength="[KBytes]" />
</system.web>

executionTimeout="[seconds]" - time in seconds before request is
automatically timed out
maxRequestLength="[KBytes]" - KBytes size of maximum request
length to accept

Shyam said:
I am trying to open an ASPX file in a new window which displays a report
in PDF format (using SQL reporting service). The query to display the
results takes about 3 minutes in the query analyzer. But I am getting
operation timed out error in the new window that I open before even before 2
minutes. I use just a binary write for the response that I get in byte
format. Can somebody suggest a solution?
 
Back
Top