For login protecting a page / folder / subweb w/ a database see
http://support.microsoft.com/default.aspx?scid=321439
- your host would need to support ASP and Access
For what you are trying to do (redirect a specific user to a specific page)
- you would need to customize the ASP code to look up the page location based on the username/password in the Database and return a
Response.Redirect for the page obtained from the Database (the full URL of the page for that user from a field named say: page)
The 2 links on above page should give you a guide
See
http://support.microsoft.com/kb/299987/EN-US/
Instead of using
Response.Redirect "Default.asp"
First Get the page from the DB
strPage = Rs.Fields("page").value
Then send them there
Response.Redirect strPage
Yes it requires learning some ASP, but it is not that difficult
- if all of the above is too complex for you, engage a developer
--
_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________
"Jaye" <(E-Mail Removed)> wrote in message news:99E18E8B-6158-4480-A702-(E-Mail Removed)...
| So, I have been told that I can redirect a password page by using an asp
| database.
|
| 1. is this true?
| 2. Is this easy?
|
| I know that my host supports asp.
|
| I am trying to have one login page, once there the user will put in a
| password. That password will send them to one of 10 pages. I do not want my
| customers to see the other pages. They will each have their own page. Make
| sense?
|
| Thank you
|