Question: |
I would like to still capture data to my system and have it post to SalesJunction.com using LeadCapture. How can I accomplish this? |
Answer: |
Update: We now have API's that may be used to integrate to our system from outside systems. Just contact us to get details on the SJ API.
If you are non-technical, please contact us at support@salesjunction.com and we will help you get this going for FREE.
You will have to do the main form processing on your side and then post out the form to our url when you are done with the data you want us to store. An easy way to do this is to have your CGI/PHP/ASP pages do their processing, then write out a page with some javascript on it that does an automatic post onload to the LeadCapture page. Doing that will give you a chance to do whatever you want with the data and then still have it posted into SalesJunction.com.
Just make sure you use the proper form field names when posting to LeadCapture. Also make sure that you have all the fields you want to capture on the LeadCapture page in the system. Here is an example of an autoposting page:
< html> < body onload="document.form1.submit();"> < form name="form1" method="post" action=https://login.salesjunction.com/sjlc.asp> < input type=hidden name=cmd value=Submit> < input type=hidden name=F01_REV value=Y> < input type=hidden name=c value=YOURCOID> < input type=hidden name=page value=1> *** Write out all the variables here in hidden format *** < /form> < /body> < /html>
For an advanced example download this text file with an ASP coded form that can be used as a template to work with: postprocess_asp.txt Right-Click the link and Save-As to a local text file.
|
|
|