You need to sign in to do that
Don't have an account?
RajeevlsHyd
Pass parameters in the URL from VF page
I want to pass parameters for contact record in the url through a vf page .. Any idea how to pass .
For ex :
https://cs15.salesforce.com/apex/SearchForm?contactId=003e000000Aplmn&employees=10
When we pass employees = 10 , the field should be populated with 10 on the search form...
Please suggest
You have to see the HTML of the vf page and see what is the ID assigned to this employees field.
Most of the times it is the Salesforce ID.
The url would be:
https://cs15.salesforce.com/apex/SearchForm?contactId=003e000000Aplmn&<field id>=10
Regards,
Satish Kumar