how do you create a password required page

M

Mike

fp is about as user friendly as a hungary alligator
telling me to create a text box and then apply "password required"
does NOTHING to help me in creating
a page where a person has to register to view a given page

please help


Reply To : [email protected]
 
T

Tom Willett

Password Protect Part of a Web:
http://support.microsoft.com/default.aspx?scid=kb;en-us;301554
http://www.frontpagehowto.com/newpassword/
http://data-insite.co.uk/frontpage/asp_password.asp
--
===
Tom Willett
Microsoft MVP - FrontPage
---
FrontPage Support:
http://www.frontpagemvps.com/
===
| fp is about as user friendly as a hungary alligator
| telling me to create a text box and then apply "password required"
| does NOTHING to help me in creating
| a page where a person has to register to view a given page
|
| please help
|
|
| Reply To : [email protected]
 
R

Ronx

Requires server side scripting, depending on what your host supports
(asp, asp.net, php, etc.).

At its simplest (single password for all users) add some code to the
protected page that checks for a session variable. If the variable
exists with the correct value - display the page, else redirect to a
login page which sets the variable.
The code for this will depend on the technology used.
 
Top