Pass a Number to a fp form and populate a text field

O

odgee

I'm sure there is a simple way to do this but I am hacing no luck so
far.
My website www.handmadecarpets-kilims.com has pages where you can view
the details of a specific carpet. There is a link on each page that
takes you to a frontpage form.
What I would like to do is attach a unique product number to the link.
Then when the form opens Have the text field for the product number
populated with the number that was attached to the link.
This then leaves the customer to fill in the rest of the form and
submit it.
Thanks in advance to anyone who can help
 
M

Mr. Analogy

You can do this with .asp pages (active server pages).

You can pass a variable from the first page in the URL you use to call the
second page.

(link on first page: YourSite.com/SecondPage.asp?Variable=value )

The second page can then have a server side script (.asp script) tht writes
the "variable" value to the right section of the form.
 
Top