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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top