PC Review


Reply
Thread Tools Rate Thread

confirming e-mail address in forms

 
 
eberned
Guest
Posts: n/a
 
      28th Mar 2008
I have a form that people can subscribe to a mailing list. I have 3 text
boxes T1=name T2=e-mail address T3=confirm e-mail address. I want to make
sure that the T2 & T3 are both entered correctly and not allow the form to be
submitted until they are the same. I tried looking at validating the box and
tried must be equal to but do not know what string to writhe for value. IF
that is the way to go in the first place. Any help appreciated

www.blackcreekbaptistchruch.com

mike_e_ebermed
 
Reply With Quote
 
 
 
 
Ronx
Guest
Posts: n/a
 
      28th Mar 2008
See http://www.rxs-enterprises.org/tests/email-check.htm
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

http://www.rxs-enterprises.org/fp




"eberned" <(E-Mail Removed)> wrote in message
news:91FAC8CA-22B2-47E2-95EC-(E-Mail Removed):

> I have a form that people can subscribe to a mailing list. I have 3 text
> boxes T1=name T2=e-mail address T3=confirm e-mail address. I want to make
> sure that the T2 & T3 are both entered correctly and not allow the form to be
> submitted until they are the same. I tried looking at validating the box and
> tried must be equal to but do not know what string to writhe for value. IF
> that is the way to go in the first place. Any help appreciated
>
> www.blackcreekbaptistchruch.com
>
> mike_e_ebermed


 
Reply With Quote
 
eberned
Guest
Posts: n/a
 
      28th Mar 2008
I went to the url and I copied and pasted the html and then did the same with
the java script. It came up with an error page which I am sure is beause I
made one. I will just come out and ask... How do I incorporate the js and
html code to make the form work? Can I add a text box to it for the persons
name? You have already been a lot of help. But I am not very good at
working behind the FP interface.

mike_e_ebermed

"Ronx" wrote:

> See http://www.rxs-enterprises.org/tests/email-check.htm
> --
> Ron Symonds - Microsoft MVP (FrontPage)
> Reply only to group - emails will be deleted unread.
>
> http://www.rxs-enterprises.org/fp
>
>
>
>
> "eberned" <(E-Mail Removed)> wrote in message
> news:91FAC8CA-22B2-47E2-95EC-(E-Mail Removed):
>
> > I have a form that people can subscribe to a mailing list. I have 3 text
> > boxes T1=name T2=e-mail address T3=confirm e-mail address. I want to make
> > sure that the T2 & T3 are both entered correctly and not allow the form to be
> > submitted until they are the same. I tried looking at validating the box and
> > tried must be equal to but do not know what string to writhe for value. IF
> > that is the way to go in the first place. Any help appreciated
> >
> > www.blackcreekbaptistchruch.com
> >
> > mike_e_ebermed

>
>

 
Reply With Quote
 
Ronx
Guest
Posts: n/a
 
      29th Mar 2008
What was the error?

If the error was a 404 error page, then the mistake was mine. I should
have explained that the forms action attribute was pointed to the same
page (email-check.htm) and the when submitted the page email-check.htm
would be loaded. Obviously in your site the page does not exist.

You can add as many more fields to the form as you wish.
To make the form work as a "real" form, right click anywhere in the form
and choose Form Properties. From here you can choose where the data is
to be stored or emailed, choose a confirmation page (or use the
FrontPage default), or if your server does not have FrontPage extensions
choose your own form handler to process the information.

Do not use the FrontPage validation feature - that will prevent the
email checking from functioning.

I have updated the script (to give a warning about invalid email format)
and added the above notes to the page at
http://www.rxs-enterprises.org/tests/email-check.htm
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

http://www.rxs-enterprises.org/fp




"eberned" <(E-Mail Removed)> wrote in message
news2C324C5-0CA5-44D0-B9DC-(E-Mail Removed):

> I went to the url and I copied and pasted the html and then did the same with
> the java script. It came up with an error page which I am sure is beause I
> made one. I will just come out and ask... How do I incorporate the js and
> html code to make the form work? Can I add a text box to it for the persons
> name? You have already been a lot of help. But I am not very good at
> working behind the FP interface.
>
> mike_e_ebermed
>
> "Ronx" wrote:
>
> > See http://www.rxs-enterprises.org/tests/email-check.htm
> > --
> > Ron Symonds - Microsoft MVP (FrontPage)
> > Reply only to group - emails will be deleted unread.
> >
> > http://www.rxs-enterprises.org/fp
> >
> >
> >
> >
> > "eberned" <(E-Mail Removed)> wrote in message
> > news:91FAC8CA-22B2-47E2-95EC-(E-Mail Removed):
> >
> > > I have a form that people can subscribe to a mailing list. I have 3 text
> > > boxes T1=name T2=e-mail address T3=confirm e-mail address. I want to make
> > > sure that the T2 & T3 are both entered correctly and not allow the form to be
> > > submitted until they are the same. I tried looking at validating the box and
> > > tried must be equal to but do not know what string to writhe for value. IF
> > > that is the way to go in the first place. Any help appreciated
> > >
> > > www.blackcreekbaptistchruch.com
> > >
> > > mike_e_ebermed

> >
> >


 
Reply With Quote
 
eberned
Guest
Posts: n/a
 
      29th Mar 2008
Thnaks my question is now where do I insert the Java Script into the HTMl in
the code view? before it? after it? or before or after the onchange command?
Do this makes sense?

Mike

"Ronx" wrote:

> What was the error?
>
> If the error was a 404 error page, then the mistake was mine. I should
> have explained that the forms action attribute was pointed to the same
> page (email-check.htm) and the when submitted the page email-check.htm
> would be loaded. Obviously in your site the page does not exist.
>
> You can add as many more fields to the form as you wish.
> To make the form work as a "real" form, right click anywhere in the form
> and choose Form Properties. From here you can choose where the data is
> to be stored or emailed, choose a confirmation page (or use the
> FrontPage default), or if your server does not have FrontPage extensions
> choose your own form handler to process the information.
>
> Do not use the FrontPage validation feature - that will prevent the
> email checking from functioning.
>
> I have updated the script (to give a warning about invalid email format)
> and added the above notes to the page at
> http://www.rxs-enterprises.org/tests/email-check.htm
> --
> Ron Symonds - Microsoft MVP (FrontPage)
> Reply only to group - emails will be deleted unread.
>
> http://www.rxs-enterprises.org/fp
>
>
>
>
> "eberned" <(E-Mail Removed)> wrote in message
> news2C324C5-0CA5-44D0-B9DC-(E-Mail Removed):
>
> > I went to the url and I copied and pasted the html and then did the same with
> > the java script. It came up with an error page which I am sure is beause I
> > made one. I will just come out and ask... How do I incorporate the js and
> > html code to make the form work? Can I add a text box to it for the persons
> > name? You have already been a lot of help. But I am not very good at
> > working behind the FP interface.
> >
> > mike_e_ebermed
> >
> > "Ronx" wrote:
> >
> > > See http://www.rxs-enterprises.org/tests/email-check.htm
> > > --
> > > Ron Symonds - Microsoft MVP (FrontPage)
> > > Reply only to group - emails will be deleted unread.
> > >
> > > http://www.rxs-enterprises.org/fp
> > >
> > >
> > >
> > >
> > > "eberned" <(E-Mail Removed)> wrote in message
> > > news:91FAC8CA-22B2-47E2-95EC-(E-Mail Removed):
> > >
> > > > I have a form that people can subscribe to a mailing list. I have 3 text
> > > > boxes T1=name T2=e-mail address T3=confirm e-mail address. I want to make
> > > > sure that the T2 & T3 are both entered correctly and not allow the form to be
> > > > submitted until they are the same. I tried looking at validating the box and
> > > > tried must be equal to but do not know what string to writhe for value. IF
> > > > that is the way to go in the first place. Any help appreciated
> > > >
> > > > www.blackcreekbaptistchruch.com
> > > >
> > > > mike_e_ebermed
> > >
> > >

>
>

 
Reply With Quote
 
Ronx
Guest
Posts: n/a
 
      29th Mar 2008
The JavaScript goes anywhere between the <head> and </head> tags.

Open my page in a browser, and view source. You can see the Javascript
in the <head> section, and the onchange and onsubmit events in the form
fields and for tag respectively.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

http://www.rxs-enterprises.org/fp




"eberned" <(E-Mail Removed)> wrote in message
news:A64D8B30-0C31-4699-BFB0-(E-Mail Removed):

> Thnaks my question is now where do I insert the Java Script into the HTMl in
> the code view? before it? after it? or before or after the onchange command?
> Do this makes sense?
>
> Mike
>
> "Ronx" wrote:
>
> > What was the error?
> >
> > If the error was a 404 error page, then the mistake was mine. I should
> > have explained that the forms action attribute was pointed to the same
> > page (email-check.htm) and the when submitted the page email-check.htm
> > would be loaded. Obviously in your site the page does not exist.
> >
> > You can add as many more fields to the form as you wish.
> > To make the form work as a "real" form, right click anywhere in the form
> > and choose Form Properties. From here you can choose where the data is
> > to be stored or emailed, choose a confirmation page (or use the
> > FrontPage default), or if your server does not have FrontPage extensions
> > choose your own form handler to process the information.
> >
> > Do not use the FrontPage validation feature - that will prevent the
> > email checking from functioning.
> >
> > I have updated the script (to give a warning about invalid email format)
> > and added the above notes to the page at
> > http://www.rxs-enterprises.org/tests/email-check.htm
> > --
> > Ron Symonds - Microsoft MVP (FrontPage)
> > Reply only to group - emails will be deleted unread.
> >
> > http://www.rxs-enterprises.org/fp
> >
> >
> >
> >
> > "eberned" <(E-Mail Removed)> wrote in message
> > news2C324C5-0CA5-44D0-B9DC-(E-Mail Removed):
> >
> > > I went to the url and I copied and pasted the html and then did the same with
> > > the java script. It came up with an error page which I am sure is beause I
> > > made one. I will just come out and ask... How do I incorporate the js and
> > > html code to make the form work? Can I add a text box to it for the persons
> > > name? You have already been a lot of help. But I am not very good at
> > > working behind the FP interface.
> > >
> > > mike_e_ebermed
> > >
> > > "Ronx" wrote:
> > >
> > > > See http://www.rxs-enterprises.org/tests/email-check.htm
> > > > --
> > > > Ron Symonds - Microsoft MVP (FrontPage)
> > > > Reply only to group - emails will be deleted unread.
> > > >
> > > > http://www.rxs-enterprises.org/fp
> > > >
> > > >
> > > >
> > > >
> > > > "eberned" <(E-Mail Removed)> wrote in message
> > > > news:91FAC8CA-22B2-47E2-95EC-(E-Mail Removed):
> > > >
> > > > > I have a form that people can subscribe to a mailing list. I have 3 text
> > > > > boxes T1=name T2=e-mail address T3=confirm e-mail address. I want to make
> > > > > sure that the T2 & T3 are both entered correctly and not allow the form to be
> > > > > submitted until they are the same. I tried looking at validating the box and
> > > > > tried must be equal to but do not know what string to writhe for value. IF
> > > > > that is the way to go in the first place. Any help appreciated
> > > > >
> > > > > www.blackcreekbaptistchruch.com
> > > > >
> > > > > mike_e_ebermed
> > > >
> > > >

> >
> >


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
will mail forms stop bots obtaining mail address Pieman Microsoft Frontpage 4 12th Mar 2006 03:40 AM
Outlook 2003 Address Book problem - different email address forms =?Utf-8?B?RnJhbmtTcG9rYW5l?= Microsoft Outlook Discussion 3 17th Jan 2006 07:58 PM
Skip confirming in Outlook when autmatic sending mail from Access =?Utf-8?B?RnJlZA==?= Microsoft Outlook Installation 1 18th Nov 2005 05:06 PM
How to get forms to show senders email mail address? =?Utf-8?B?Qm9i?= Microsoft Frontpage 4 22nd May 2005 06:56 AM
confirming e-mail address sylvia pittman Windows XP Messenger 0 21st Sep 2003 01:50 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:02 AM.