Login User and Redirect to a specific page - help required

Ask a Question related to Macromedia Dreamweaver, Design and Development.

  1. #1

    Default 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 username/password combo gets redirected to Bert's page. When
    Ernie logs in he gets taken to Ernie's page etc etc

    I've had a tour around (what I think are) the "usual suspect's" but have
    come up with nothing that helped me.

    If anyone knows of a tuorial I would be very grateful?

    TIA

    Alex

    Alex Billerey Guest

  2. Similar Questions and Discussions

    1. 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...
    2. User Specific Login
      :confused; I want a user to be able to login and view information specific to that user name and only to that user name (i.e. I want each user to...
    3. Redirect to specific page
      Is there a way to configure the User Authentication so that each login is taken to a specific page? So a visitor with the login name...
    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. User Login to Redirect using PHP
      I've read many posts about redirecting a user by specifying the directin url in the database, but have had very little luck. I'm using Dreamweaver's...
  3. #2

    Default Re: Login User and Redirect to a specific page - help required

    dead simple.

    direct all users to a kind of "in-between" page.

    On that page get a recordset which is filtered the MM_Username session which
    would give you the filter result of the user that is logged in.

    In the database, alongside their login details store their redirect page.


    then on this in-between page.

    you simply write after all the recordset code
    <% response.redirect rsRecordsetname.Fields.Item("RedirectFieldName").V alue
    %>

    This should get you started

    James


    "Alex Billerey" <aab@clara.net> wrote in message
    news:bfhtps$s0v$1@forums.macromedia.com...
    > 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 username/password combo gets redirected to Bert's page. When
    > Ernie logs in he gets taken to Ernie's page etc etc
    >
    > I've had a tour around (what I think are) the "usual suspect's" but have
    > come up with nothing that helped me.
    >
    > If anyone knows of a tuorial I would be very grateful?
    >
    > TIA
    >
    > Alex
    >

    Jamesy 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