Pay Pal Buy Now Button doesn't work

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have inserted the Pay Pal html into Code view, and published the page. When
I got to the website, www.clubcalapropertyowners.com Register page, and hit
the Buy Now button, rather than going to Pay Pay, it takes me back to the
form. What's missing?
 
Dan Heist said:
I have inserted the Pay Pal html into Code view, and published the page. When
I got to the website, www.clubcalapropertyowners.com Register page, and hit
the Buy Now button, rather than going to Pay Pay, it takes me back to the
form. What's missing?

A link to the page!!


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
 
Steve: Click on the link to the Register page
--
===
Tom [Pepper] Willett
Microsoft MVP - FrontPage
---
FrontPage Support:
http://www.frontpagemvps.com/
===
|
| | > I have inserted the Pay Pal html into Code view, and published the page.
When
| > I got to the website, www.clubcalapropertyowners.com Register page, and
hit
| > the Buy Now button, rather than going to Pay Pay, it takes me back to
the
| > form. What's missing?
| >
|
| A link to the page!!
|
|
| --
| Steve Easton
| Microsoft MVP FrontPage
| 95isalive
| This site is best viewed..................
| ..............................with a computer
|
|
 
Ah, got it.
Thanks Tom.


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
 
Switch to code view.
Scroll to line 168 and remove align="center" as seen below.


<blockquote>
<p><font face="Arial">YOU CAN PAY YOUR ASSOCIATION DUES WITH YOUR CREDIT CARD OR PAY PAL
ACCOUNT. CLICK ON THE &quot;BUY NOW&quot; BUTTON.&nbsp; </font>
<p align="center"><font face="Arial">

Should be:

<blockquote>
<p><font face="Arial">YOU CAN PAY YOUR ASSOCIATION DUES WITH YOUR CREDIT CARD OR PAY PAL
ACCOUNT. CLICK ON THE &quot;BUY NOW&quot; BUTTON.&nbsp; </font>
<p><font face="Arial">


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
 
You have 4 forms on that page all pointing to:

<form method="post" action="club_cala_property_owners_associ.asp"

as well as have a form within a form (PayPal).

When you have multiple forms on a page, each must have a unique name.

The PayPal form must post to the PayPal web site
--
==============================================
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.
==============================================
 
Won't work as his host does not support ASP

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| You have 4 forms on that page all pointing to:
|
| <form method="post" action="club_cala_property_owners_associ.asp"
|
| as well as have a form within a form (PayPal).
|
| When you have multiple forms on a page, each must have a unique name.
|
| The PayPal form must post to the PayPal web site
| --
| ==============================================
| 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.
| ==============================================
|
| | >I have inserted the Pay Pal html into Code view, and published the page. When
| > I got to the website, www.clubcalapropertyowners.com Register page, and hit
| > the Buy Now button, rather than going to Pay Pay, it takes me back to the
| > form. What's missing?
| >
|
|
 
Even without supporting ASP, the forms will not work based on how the page was designed.

--
==============================================
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.
==============================================
 
Back
Top