How do I put a log in on my web

G

Guest

What should these tags be?
--
Mike B


Thomas A. Rowe said:
You are missing the opening and closing form tag surrounding the form fields.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
T

Thomas A. Rowe

Use Insert | Form, then move the form fields to be within the dashed outline.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
R

Ronx

That snippet is not the complete page, but it is missing <form> and
</form> tags. Are these elsewhere in the code?
The start of the table is missing in the snippet, but assuming nothing
else is going in the page, change it to:


<table align="center">
<tr>
<td valign="top" align="left" bgcolor="#FFFFFF">
<table border="0" cellpadding="10" cellspacing="0" width="100%"
style="border-collapse: collapse" id="table63">
<caption><font size="3" color="#4C6B74"><b>Members log in
page</b></font></caption>
<tr>
<td width="100%" valign="top">
<form method="POST" action="page.asp">
<p align="center">&nbsp;</p>
<p align="center"><font face="Arial" color="#003366"><input
name="username"></font><font face="Arial" color="#4C6B74">Username
(set the form field name to username)<br>
</font><font face="Arial" color="#003366"><font
color="#4C6B74"><input name="password"></font><font face="Arial"
color="#4C6B74">Password (set the form field name to
password)</font></font></p>
<p align="left"><font face="Arial" color="#003366"><br>
<input type="submit" value="Submit" name="B1"><input
type="reset" value="Reset" name="B2"></font></p>
</form>
</td>
</tr>
</table>
</td>
</tr>
</table>

which follows your styling and places the form in the centre of the
page.
Change the form properties to suit your requirements.
--
Ron Symonds
Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

mike b said:
Here is the code on the page

<td valign="top" bgcolor="#FFFFFF">
<div align="left">
<table border="0" cellpadding="10" cellspacing="0" width="100%"
style="border-collapse: collapse" id="table63">

<p>
<font size="3"><b>
<font color="#4C6B74">
<u>Members log in page</u></font></b></font></p>

<tr>
<td width="100%" valign="top">
<p align="center"> </p>
<p align="center"><font face="Arial" color="#003366"><input
name="username"></font><font face="Arial" color="#4C6B74">Username
(set the form field name to username)<br>
</font><font face="Arial" color="#003366"><font
color="#4C6B74"><input
name="password"></font><font face="Arial" color="#4C6B74">Password
(set the
form field name to password)</font></font><p align="left">
<font face="Arial" color="#003366"><br>

<input type="submit" value="Submit" name="B1"><input type="reset"
value="Reset" name="B2"></font>
align="center"> <p align="center">

<table border="0" cellpadding="4"
 
G

Guest

Got it great,

When I check the box send to other, what do I put there? Do I place
anything like logonvalidations.asp anywhere?

Thanks
 
G

Guest

I made my log in page and followed all instructions. What do I name the
page? logon.asp or logon.htm? I have it .asp and when I try to quick link to
it, it will not open. Am I missing something?

Thanks
 
S

Stefan B Rusynko

Create the pages and file names according to the tutorial

- the form page w/ the 2 fields is on logon.asp sending form results to the page
logonvalidation.asp (in the same directory or w/ a path to its directory)

Don't understand your "when I try to quick link to it"

For ASP pages to work they need to be created on a Windows server that supports ASP
(not on a disc based web on your PC or in FP Preview)
--




|I made my log in page and followed all instructions. What do I name the
| page? logon.asp or logon.htm? I have it .asp and when I try to quick link to
| it, it will not open. Am I missing something?
|
| Thanks
| --
| Mike B
|
|
| "Paul M" wrote:
|
| > Hi Mike
| > I presume you are using the tutorial at
| > http://www.frontpagehowto.com/newpassword/default.asp#logon
| > when you click on the send to other you then need to click on the options
| > button then put in logonvalidations.asp in the text box
| > Paul M
| > | > > Got it great,
| > >
| > > When I check the box send to other, what do I put there? Do I place
| > > anything like logonvalidations.asp anywhere?
| > >
| > > Thanks
| > > --
| > > Mike B
| > >
| > >
| > > "Thomas A. Rowe" wrote:
| > >
| > >> You are missing the opening and closing form tag surrounding the form
| > >> fields.
| > >>
| > >> --
| > >> ==============================================
| > >> Thomas A. Rowe (Microsoft MVP - FrontPage)
| > >> ==============================================
| > >> If you feel your current issue is a results of installing
| > >> a Service Pack or security update, please contact
| > >> Microsoft Product Support Services:
| > >> http://support.microsoft.com
| > >> If the problem can be shown to have been caused by a
| > >> security update, then there is usually no charge for the call.
| > >> ==============================================
| > >>
| > >> | > >> > There is no form properties in my page. I clicked on the user log in
| > >> > box and
| > >> > right clicked. I had the page prop and form field prop, but not the one
| > >> > I
| > >> > need?
| > >> >
| > >> > All help is good! thanks
| > >> > --
| > >> > Mike B
| > >> >
| > >> >
| > >> > "Ronx" wrote:
| > >> >
| > >> >> Open the web and the page with the form in FrontPage.
| > >> >> click on any form element, example: textbox, to select it - thus
| > >> >> ensuring you are within the Form boundaries - then right-click
| > >> >> Choose Form Properties from the menu. (You will see "Form Field
| > >> >> Properties" and "Form Properties" as well as "Page Properties")
| > >> >> If you do not have Form properties, then you do not have a valid
| > >> >> form - post your HTML code for the page in this thread.
| > >> >> --
| > >> >> Ron Symonds
| > >> >> Microsoft MVP (FrontPage)
| > >> >> Reply only to group - emails will be deleted unread.
| > >> >>
| > >> >> | > >> >> >I have page properties in FP2003, no form properties? I am new to
| > >> >> >this is
| > >> >> > well, that is why I need to be walked through this the first time
| > >> >> > --
| > >> >> > Mike B
| > >> >> >
| > >> >> >
| > >> >> > "Ronx" wrote:
| > >> >> >
| > >> >> >> Right-click anywhere in the form, then choose Form Properties from
| > >> >> >> the
| > >> >> >> context menu.
| > >> >> >> --
| > >> >> >> Ron Symonds
| > >> >> >> Microsoft MVP (FrontPage)
| > >> >> >> Reply only to group - emails will be deleted unread.
| > >> >> >>
| > >> >> >> | > >> >> >> > Hi
| > >> >> >> >
| > >> >> >> > Great information, how do I find Set the form properties to "Send
| > >> >> >> > to
| > >> >> >> > other"
| > >> >> >> > and then click Options. In the Action box type
| > >> >> >> > logonvalidation.asp.
| > >> >> >> >
| > >> >> >> > This form can be placed on any page in your web but you should
| > >> >> >> > have
| > >> >> >> > a page
| > >> >> >> > with only this form on it in case your user tries to go to a
| > >> >> >> > protected page
| > >> >> >> > without first logging in. The code in the protected page will
| > >> >> >> > send
| > >> >> >> > the user
| > >> >> >> > to the logon.asp page. Once logged in, the user will be sent to
| > >> >> >> > the
| > >> >> >> > originally requested page
| > >> >> >> >
| > >> >> >> > I can't figure out how to find this in FP?
| > >> >> >> >
| > >> >> >> > Thanks
| > >> >> >> > --
| > >> >> >> > Mike B
| > >> >> >> >
| > >> >> >> >
| > >> >> >> > "Paul M" wrote:
| > >> >> >> >
| > >> >> >> >> Hi Tonnie
| > >> >> >> >> I use this
| > >> >> >> >> http://www.frontpagehowto.com/newpassword/default.asp#logon
| > >> >> >> >>
| > >> >> >> >> Paul M
| > >> >> >> >> | > >> >> >> >> >I would like to put a log in or a password entry on my site to
| > >> >> >> >> >get
| > >> >> >> >> >to
| > >> >> >> >> >special
| > >> >> >> >> > pages. I can not find a way to do this in Front Page.
| > >> >> >> >>
| > >> >> >> >>
| > >> >> >> >>
| > >> >> >>
| > >> >> >>
| > >> >> >>
| > >> >>
| > >> >>
| > >> >>
| > >>
| > >>
| > >>
| >
| >
| >
 
P

Paul M

Hi
Check that the server is asp enabled,upload the asp page to the server and
veiw it online, if it still does not work then try recreating the page from
scratch, this often works for me.
Also check that the link you are using to veiw the page is correct.
Paul M
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top