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

  1. #1

    Default Database Login Tool

    Hi,
    I am looking for an application, preferably Free, that will allow me
    to have a clients area on my site. I would have a list of usernames
    and passwords and each combination would direct the user to a
    different page depending on their user name. Does anybody know of such
    an app. I know webwizguide.com have a Database Login app. but it
    doesn't allow different pages to be set up for different logins. Any
    help appreciated. Cheers
    DeadCert Guest

  2. Similar Questions and Discussions

    1. Database/Login on own PC
      Hi I'm making a site, but do not have an online host yet. I want to make a login system, so I need a database. but when i want to set the site...
    2. Login Using to Access Database
      Hello - I wonder if anyone can help me with this 'simple' question? I need to login to an Access database using the surname and table ID. The...
    3. Best practice for login screen using database
      I have an c# as.net app that check if the user exist in a USERS table, that part is ok but now I need to pass the user ID no the next page beacuse...
    4. ASP Login / Database Help.
      I am needing some help with a few asp pages and a login script. Let me start by describing my project. I am trying to connect to a database and...
    5. [ANN] FireStorm/DAO Database Persistence Tool for Java Programmers
      CodeFutures Launches Update of FireStorm/DAO Database Persistence Tool for Java Programmers http://www.codefutures.com/products/firestorm/ ...
  3. #2

    Default Re: Database Login Tool

    On 4 Feb 2004 06:13:21 -0800, [email]rekdagaf@hotmail.com[/email] (DeadCert) wrote:
    >I am looking for an application, preferably Free, that will allow me
    >to have a clients area on my site. I would have a list of usernames
    >and passwords and each combination would direct the user to a
    >different page depending on their user name. Does anybody know of such
    >an app. I know webwizguide.com have a Database Login app. but it
    >doesn't allow different pages to be set up for different logins. Any
    >help appreciated. Cheers
    You may need to roll your own, but it's not difficult. Possibly as
    simple as a redirect on login that simply sends the user to a new page
    based on username. Even easier if the page has the same name as the
    user, it could be as easy as:

    UserURL = UserName & ".asp"
    Response.Redirect UserURL

    Jeff
    Jeff Cochran Guest

  4. #3

    Default Re: Database Login Tool

    why not create a HTACCESS file an then you can have a server side script
    e.g. Perl/ASP/PHP detect that user and redirect.

    DeadCert wrote:
    > Hi,
    > I am looking for an application, preferably Free, that will allow me
    > to have a clients area on my site. I would have a list of usernames
    > and passwords and each combination would direct the user to a
    > different page depending on their user name. Does anybody know of such
    > an app. I know webwizguide.com have a Database Login app. but it
    > doesn't allow different pages to be set up for different logins. Any
    > help appreciated. Cheers
    Greg Griffiths Guest

  5. #4

    Default Re: Database Login Tool

    Cheers for that. Don't know much about ASP but will have a play around.
    >
    > You may need to roll your own, but it's not difficult. Possibly as
    > simple as a redirect on login that simply sends the user to a new page
    > based on username. Even easier if the page has the same name as the
    > user, it could be as easy as:
    >
    > UserURL = UserName & ".asp"
    > Response.Redirect UserURL
    >
    > Jeff
    DeadCert 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