Session Expired error

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

  1. #1

    Default Session Expired error

    I have application that uses session variables to preserve
    data between calls
    Session expiration time is set to 20 min. Sometimes my
    users getting error 'Session Expired' even right after
    they log in to application!
    Any ideas how to get around this issue?

    Lenny Guest

  2. Similar Questions and Discussions

    1. timeout expired error
      I am using visual web developer and the odbc driver to connect to a mysql database. It seems like every four or five connections to the database...
    2. Question about redirecting to a "session expired" page...
      This may sound trivial but I cannot figure out how to do this... When a logged in user's session expires, I want that user redirected back to the...
    3. Message Expired Error on Certain machines
      Hello all, I'm using a WebService, and on my machine which has the VS.Net Studio installed it works perfect, I also have the following installed: ...
    4. [PHP] Warning - Page has expired error
      Use get instead of post. for the request method. Then please make sure that you are not sending any expires headers in your code. all the best ...
    5. Session Expired (sessionState mode="SQLServer")
      Hi All, We have developmented Web project with ASP.Net and SQL server Database. In this project we have configured "SessionState" mode as...
  3. #2

    Default Re: Session Expired error

    it may help to explicitly set the timeout in the page_load ispostback
    portion
    Session.TimeOut = 20;
    "Lenny" <ariq@yahoo.com> wrote in message
    news:074a01c35711$ebeaf3d0$a401280a@phx.gbl...
    > I have application that uses session variables to preserve
    > data between calls
    > Session expiration time is set to 20 min. Sometimes my
    > users getting error 'Session Expired' even right after
    > they log in to application!
    > Any ideas how to get around this issue?
    >

    Alvin Bruney 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