How to prevent Page from being timed out?

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default How to prevent Page from being timed out?

    Dear All,
    I am creating a Web application that reads large amounts of files
    kept in a directory structure on the WebServer...my application calls
    a WebService that reads some files and depending upon the query set by
    the user populate the data in a tabular format...if the file is large
    the WebService takes a long time and I get the error "Application
    Server not found"...I guess this is a page time out....I have set my
    session timeout to 3600...but the error still comes up...can someone
    suggest me a right solution to this problem? Should I
    1. Use Asynchronous WebServices? How do I get a notification in my
    aspx page on my client side?
    2. Should I use Session variable in my WebServices?
    3. What does Response.timeout do? will setting a value for this
    help?

    Please help...

    TALIA
    Many Regards
    Sunil
    Sunil Menon Guest

  2. Similar Questions and Discussions

    1. How do I prevent users from editing certain portions ofa page?
      Hi, I've created a site in DWCS3 using a template. However, I ONLY want my client to edit a few parts of the site and not everything in the...
    2. Prevent data insert on page refresh
      After a form is submited and inserted to the database, if the user hits the refresh button the data is again inserted to the database (there is a...
    3. Force page to refresh/prevent caching
      Greetings JGLADNICK. This is referring to your post on CFusion/WebForums of one year ado regarding "Prevent Caching". Have you ever been able to...
    4. Prevent 'Page has expired' when a client hits back to return to a search page
      I have a search page that I want to enable private caching so that when a user hits the back button they dont get the page has expired error. I...
    5. Prevent Page Refresh
      How do I prevent a user from going back to a previous page, and also from refreshing a current page? Forgive me for my ignorance, here; but I've...
  3. #2

    Default Re: How to prevent Page from being timed out?

    Dear All,
    I checked the application.log from the event viewer and found the
    following error:
    aspnet_wp.exe (PID: <xxx>) was recycled because it was suspected to be
    in a
    deadlocked state. It did not send any responses for pending requests in
    the
    last 180 seconds.

    In MDSN help I found some information related to this Q321792...which
    asks us to apply the latest .Net Framework service pack...I have done
    that but I still get the error...

    Is increasing the "executionTimeout" in Machine.config the right
    solution then?

    Please help...

    TALIA
    Many Regards
    Sunil



    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Sunil Menon Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139