function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Nichelle HubleyNichelle Hubley 

append web-to-lead parameters to url

Hi all,
This might be an easy fix, but I can't figure it out.

I have a web-to-lead form from which I need to use the data on the thank you page. Do you know a way to get the data into the URL as parameters?

The form is here: https://pfpinc.secure.force.com/tii/group_lead

James LoghryJames Loghry
Http forms, such as the web to load form you linked to are sent using an HTTP POST rather than an HTTP GET. In other words, you can't use a parameter like http://www.url.com?param1=value1&param2=value2.  However, if you need to add a variable to your form, you simply include another form element on your web to load form.  If you want this to not display, then you can utilize an input with type="hidden".  This post may also help: https://success.salesforce.com/answers?id=90630000000gqf4AAA

Thanks,
- James