dynamically generated html

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

Guest

I need some direction on dynamically generating html code for FrontPage 2003
 
What is it that you are trying to accomplish?

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
I am trying to pass variable information to paypal payment screens. The
required directions says that I can pre-populate my customers sign-up by
passing information that I collected and passing it on to paypal. I need to
post variable name and associated data to Paypal in the HTML, thus it needs
to be dynamically generated by my website
example
<input type="hidden" name="business" value="mr variable"
 
What scripting language does your host support, as that will determine how you will pass values from
the form to PayPal?

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Ok, so you can use ASP/VBScript, this would be server-side, unless you only want to deal with IE
only users.

Sorry I forgot to ask, are you storing any of the data entered by the user in a database as well as
sending them to PayPal for making payment? If not, then you can handle this very easy, by just
create individual form field with the names that PayPal indicate as hidden fields, and then post the
form data directly to the PayPal server.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Thanks that seems simple enough...

Thomas A. Rowe said:
Ok, so you can use ASP/VBScript, this would be server-side, unless you only want to deal with IE
only users.

Sorry I forgot to ask, are you storing any of the data entered by the user in a database as well as
sending them to PayPal for making payment? If not, then you can handle this very easy, by just
create individual form field with the names that PayPal indicate as hidden fields, and then post the
form data directly to the PayPal server.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 

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

Back
Top