a webmaster learning community
     Home    Register     Search      Help      Login    
FrontPage Alternative
Sponsors

Hosting from $3.99 per month!

Shopping Cart Software
Ecommerce software integrated into Frontpage, Dreamweaver and Golive templates. No monthly fees and available in ASP and PHP versions. dd

Website Templates
We also have a wide selection of Dreamweaver, Expression Web and Frontpage templates as well as webmaster tools and CSS layouts.

Frontpage website templates
Creative Website Templates for FrontPage, Dreamweaver, Flash, SwishMax

Search Forums
 

Advanced search
Recent Posts

 Todays Posts
 Most Active posts
 Posts since last visit
 My Recent Posts
 Mark posts read

 

password protect a page in FP2002?

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
Printable Version 

All Forums >> Web Development >> Microsoft FrontPage Help >> password protect a page in FP2002?
Page: [1]
 
billoutfrontforum

 

Posts: 79
Joined: 10/22/2005
Status: offline

 
password protect a page in FP2002? - 10/25/2006 17:36:10   
In FP2002, can I password protect one of the pages on my website?
alfre17

 

Posts: 102
Joined: 10/8/2006
From: Florida
Status: offline

 
RE: password protect a page in FP2002? - 10/27/2006 7:15:05   
i think thise link maight help :)How to create a password-protected Web page by using FrontPage 2003, Active Server Pages, and an Access database or jest follow wat it says below

When you add this line of code to an ASP Web page, that page becomes password-protected by the logon.inc file that you create. To create a password-protected Web page, follow these steps:
1. In FrontPage 2003, click the Create a new normal page button.
2. At the footer area of the document window, click Code to show code view.
3. Select and then remove all the HTML code in the Web page.
4. Type or paste the following HTML code in the Web page.
<% @language="vbscript" %>
<!--#include virtual="/logon/_private/logon.inc"-->
<html>
<head><title>Password-Protected Page</title></head>
<body>
<h3>Password-Protected Page</h3>
<p>You are logged on as:
<%
If Len(Session("UID")) = 0 Then
Response.Write "<b>You are not logged on.</b>"
Else
Response.Write "<b>" & Session("UID") & "</b>"
End If
%>
</p>
<p><a href="default.asp">Back to default</a>
</body>
</html>


5. Right-click the new_page_1.htm tab, and then click Save.

Save the page as passwordprotect.asp in the root folder of your logon Web site.
6. On the File menu, click Close to close the passwordprotect.asp Web page.

(in reply to billoutfrontforum)
rdouglass

 

Posts: 9280
From: Biddeford, ME USA
Status: offline

 
RE: password protect a page in FP2002? - 10/27/2006 20:35:18   
The Spooky Login is a good solution as well. It is worth considering if you want to do any kind of stuff like self registration, email password recovery, access levels, etc.

I use it and think it works very well.

Just $.02

_____________________________

Don't take you're eye off your final destination.

ASP Checkbox Function Tutorial.

(in reply to alfre17)
alfre17

 

Posts: 102
Joined: 10/8/2006
From: Florida
Status: offline

 
RE: password protect a page in FP2002? - 10/27/2006 22:25:16   
let me ask, where would i ask if i needed help with databases?

(in reply to rdouglass)
billoutfrontforum

 

Posts: 79
Joined: 10/22/2005
Status: offline

 
RE: password protect a page in FP2002? - 10/30/2006 22:57:10   
What do you mean just $.02?

(in reply to rdouglass)
jaybee

 

Posts: 14207
Joined: 10/7/2003
From: Berkshire, UK
Status: offline

 
RE: password protect a page in FP2002? - 10/31/2006 4:30:19   
He means he's just giving you his 2 cents. A bit of info. Just a thought.

_____________________________

If it ain't broke..... fix it until it is.
:)

:)
GAWDS
Now where did I put that Doctype?

(in reply to billoutfrontforum)
jaybee

 

Posts: 14207
Joined: 10/7/2003
From: Berkshire, UK
Status: offline

 
RE: password protect a page in FP2002? - 10/31/2006 4:31:18   

quote:

ORIGINAL: alfre17

let me ask, where would i ask if i needed help with databases?

In the database forum after you've read the Spooky tutorials on databases.

_____________________________

If it ain't broke..... fix it until it is.
:)

:)
GAWDS
Now where did I put that Doctype?

(in reply to alfre17)
alfre17

 

Posts: 102
Joined: 10/8/2006
From: Florida
Status: offline

 
RE: password protect a page in FP2002? - 10/31/2006 6:56:21   
kk thanks

(in reply to jaybee)
billoutfrontforum

 

Posts: 79
Joined: 10/22/2005
Status: offline

 
RE: password protect a page in FP2002? - 11/12/2006 21:45:28   
What is a Spooky Login?

I want to be able to have one page on my website password protected. I have FP2002.

(in reply to rdouglass)
Spooky

 

Posts: 26617
Joined: 11/11/1998
From: Middle Earth
Status: offline

 
RE: password protect a page in FP2002? - 11/12/2006 23:44:01   
The first question - what type of server does your site run on? Is it Windows or Unix based?

_____________________________

If you arent part of the solution, then there is good money to be made prolonging the problem

§þ:)


(in reply to billoutfrontforum)
billoutfrontforum

 

Posts: 79
Joined: 10/22/2005
Status: offline

 
RE: password protect a page in FP2002? - 11/13/2006 9:00:46   
I "guess" it's Windows based. Tom Brunt's OutFront is my web host.

(in reply to Spooky)
jaybee

 

Posts: 14207
Joined: 10/7/2003
From: Berkshire, UK
Status: offline

 
RE: password protect a page in FP2002? - 11/13/2006 9:39:18   
quote:

Hosting Account Specifications

The OutFront Hosting server runs Linux


Guessing is not good. You need to make sure you know what you have as ASP scripts won't run on Linux and PHP won't run on Windows (with some exceptions).

If you buy a package and get it wrong it can be an expensive mistake.

_____________________________

If it ain't broke..... fix it until it is.
:)

:)
GAWDS
Now where did I put that Doctype?

(in reply to billoutfrontforum)
candicegiffin

 

Posts: 2
Joined: 1/23/2007
Status: offline

 
RE: password protect a page in FP2002? - 1/23/2007 17:04:27   
I read the same article posted about asp pages. I did everything that it said to do, but when I published my website, it didn't work. The login box shows up, but when I type in the user id and password, it says internal server error. It won't even accept new user ids and passwords I added to the access file. It also said which ever pages I wanted to protect, to add 2 lines of code to the top of the page, and save them as asp files. I did that, now all my hyperlinks are broken. I need help. Do I need to keep all the pages I created in the http://mydomainname.com/logon, or do I need to create them in http://mydomainname.com.

(in reply to jaybee)
Spooky

 

Posts: 26617
Joined: 11/11/1998
From: Middle Earth
Status: offline

 
RE: password protect a page in FP2002? - 1/23/2007 17:47:45   
Hi Candice, this link will help clarify what the actual error is :

http://www.frontpagewebmaster.com/m-235653/tm.htm

_____________________________

If you arent part of the solution, then there is good money to be made prolonging the problem

§þ:)


(in reply to candicegiffin)
candicegiffin

 

Posts: 2
Joined: 1/23/2007
Status: offline

 
RE: password protect a page in FP2002? - 1/23/2007 18:17:12   
It still didn't work. Do you need more info?

(in reply to Spooky)
Spooky

 

Posts: 26617
Joined: 11/11/1998
From: Middle Earth
Status: offline

 
RE: password protect a page in FP2002? - 1/23/2007 23:23:24   
Yes, it would help to know the error displayed in your browser page after doing what it said in the link I gave you

_____________________________

If you arent part of the solution, then there is good money to be made prolonging the problem

§þ:)


(in reply to candicegiffin)
Thomas Brunt

 

Posts: 6118
Joined: 6/6/1998
From: St. Matthews SC USA
Status: offline

 
RE: password protect a page in FP2002? - 1/24/2007 10:04:57   
Sorry I didn't see this sooner. Here is how to do password protection with FP on my servers.

http://www.outfront.net/tutorials_02/fp_techniques/frontpage-subwebs.htm

t



_____________________________

Free FrontPage Templates

(in reply to Spooky)
Page:   [1]
OutFront Discoveries

All Forums >> Web Development >> Microsoft FrontPage Help >> password protect a page in FP2002?
Page: [1]
Jump to: 1





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts