Asp Password protection + Redirect

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default Asp Password protection + Redirect

    Hi,

    I have a big question. I will explain it in steps -

    1) Users login to members section using a member id connected to MS
    Access database. A session variable is set for 30 minutes for all
    member section pages

    2) In member section page there is a page with link, which when
    clicked will lead our members to a library page at different server.
    We don't have any control on that server.

    So this is what we want to do:

    Once members click the link to library page, only certain priveliged
    members can see the library page, so we want to password protect the
    link. Once they click the link, we want ask for userid once again and
    for password and then redirect them to library page.

    My question is how to incorporate password into the members table,
    since only certain priveliged members can view the page. What happens
    to session variable which is already set, can i connect to database
    again, if so how to do it. There are about 4000 members how to
    generate password for all of them, and then how will the library
    server know that the person is coming legally from our server

    I know the questions are really confusing, but i am sure there are
    many genius out there who must have done this before, any help would
    be appreciated,

    thank you,
    tamilgirl
    tamilgirl Guest

  2. Similar Questions and Discussions

    1. How to add a password protection to PDF?
      Hello! I want to disable the copy and paste on a PDF document. I should use the password protection for doing that. The problem is to do this...
    2. Password Protection
      yup. use .httacess. usually we configure custom 404 using .httaccess but it can do more than just that. here's a good site that explain the use...
    3. Password protection with XML
      you need to learn a couple of things... 1) how to send and receive XML data try this link...
    4. php password protection
      I am wanting to set up password protection for an area on my website, so only our members can access this area. I am needing to do this using php...
    5. password-protection
      Something just occurred to me... <yeah, I know, it scared me too> I just password-protected a website by including a password authentication script...
  3. #2

    Default Re: Asp Password protection + Redirect

    store the user's access level in your user table.
    when the user logs on store their access level in a session variable
    when the user accesses the page with the "restricted" link, check whether
    their access level is sufficient and either write out the link or not.

    tim



    "tamilgirl" <tamilgirl04@yahoo.com> wrote in message
    news:f7548af6.0402091523.4f303367@posting.google.c om...
    > Hi,
    >
    > I have a big question. I will explain it in steps -
    >
    > 1) Users login to members section using a member id connected to MS
    > Access database. A session variable is set for 30 minutes for all
    > member section pages
    >
    > 2) In member section page there is a page with link, which when
    > clicked will lead our members to a library page at different server.
    > We don't have any control on that server.
    >
    > So this is what we want to do:
    >
    > Once members click the link to library page, only certain priveliged
    > members can see the library page, so we want to password protect the
    > link. Once they click the link, we want ask for userid once again and
    > for password and then redirect them to library page.
    >
    > My question is how to incorporate password into the members table,
    > since only certain priveliged members can view the page. What happens
    > to session variable which is already set, can i connect to database
    > again, if so how to do it. There are about 4000 members how to
    > generate password for all of them, and then how will the library
    > server know that the person is coming legally from our server
    >
    > I know the questions are really confusing, but i am sure there are
    > many genius out there who must have done this before, any help would
    > be appreciated,
    >
    > thank you,
    > tamilgirl

    Tim Williams 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