How to Password Protect FrontPage 2003
When you password protect Microsoft FrontPage 2003, your website administrators will have access to your webpage. This allows administrators the ability to modify any settings or make changes to your site when they see fit. Password protection will also help keep outsiders or hackers from attempting to modify or steal sensitive information from you. For proper modification, you will create a new blank ASP page and enter a few lines of HTML code.
Instructions
-
-
1
Open FrontPage 2003 by clicking the "Start" menu shortcut or desktop icon.
-
2
Click the "File" menu and then click the "New" option from the list. Click the "Blank Page" option from the list.
-
-
3
Click the "Code" button in the footer area of the document to show the code view.
-
4
Right-click on screen and click "Select All" from the menu. Right-click once more and then click "Delete" from the menu to delete all of the code on screen.
-
5
Type or paste in the following HTML code:
<% @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>
-
6
Click the "new_page_1.htm" tab and then click the "Save" button.
-
7
Click the "File" menu and then click the "Close" option to close the webpage.
-
1
Tips & Warnings
FrontPage 2003 also has its own built-in security functionality.