On Thu, 1 Oct 2009 14:17:43 -0700 (PDT), mike
<(E-Mail Removed)> wrote:
>I have an ASP.NET 3.5 site that talks to ASP.NET 3.5 webservices
> the site and the webservices live on different machines
>
>
> the web side of things has the timeout set to 20 minutes in the
>web.config
> <forms loginUrl="Login.aspx"
> protection="All"
> timeout="20"
> name="CSCPRS"
> requireSSL="false"
> slidingExpiration="true"
> defaultUrl="ReporterIntro.aspx"
> cookieless="UseCookies"
> enableCrossAppRedirects="false"/>
> </authentication>
>
>
>the people I did the application for want the timeout upped to 40
>minutes
The whole timeout issue could be negated by the use of asynchronous
requests. Every X units of time a page can refresh itself and check if
the async request has completed.
regards
A.G.
|