Login redirect back to previous page

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Login redirect back to previous page

    I have a number of secured pages and a login process that works. When a user
    tries to access a secure page prior to logging in, he is redirected to the
    login page.

    However, I wanted to the login page to capture the name of the previous
    secured page via a URL.variable and then use it in the URL in place of the
    'login success' page.

    However, the process seems to loop back too quickly, because the secured page
    bumps back out to a 404 page, even though the login was successful.

    Any tips on how to do this are appreciated.

    Glen T Guest

  2. Similar Questions and Discussions

    1. Forms Authentication won't redirect to login page
      I'm trying to set basic form authentication on a webapp. I allaccess restricted to authenticated users. After changing theWeb.config file in the...
    2. Using Form based Authenication and still getting redirected back to the login page
      Hello Everyone, I am running on a Windows2000 Advanced Server and asp.net 1.1 I have a login form for a site that I am working on and when I try...
    3. after redirect back, session is lost
      Thank you in advance. My ASP page 1 redirect user to third party's website, after the process at third party is finished, in 3rd party's page,...
    4. best way to redirect asp to login htm page?
      Hello, I need users to access a data entry asp page via a login page. If they bookmark the data entry asp I want to redirect them to the login...
    5. Login User and Redirect to a specific page - help required
      I'm using ASP/Access 2000. This is what I would like to do. A site has a limited number of users - User Bert logs in and assuming gets thru...
  3. #2

    Default Re: Login redirect back to previous page

    We use a pop up to log people in. Then we simply refresh the current page.

    If you think things are simply happening too quickly, try using the javascript
    setTimeout() function, instead of cflocation. Set the timeout to a long enough
    interval for things to happen in the background.

    Unless you are already doing that, in which case, I don't know.

    Dan Bracuk Guest

  4. #3

    Default Re: Login redirect back to previous page

    It turned out to be typo after all. Been looking at this code too long. Should take a break!

    Thanks!
    Glen T 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