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
TomeuTomeu 

CREATE LEADS IN MY ORG, NOT ONLY IN MY PORTAL PARTNER, USIGN THE TRIAL FORM

 Hello, I have a form in my site to give a trial of my DOT. When someone fill this form, has access to the trial, and in my portal partner I can see the lead. But I would like that the lead was created also in my org, like in web2lead. How can I siphon the prospect data off of the HTML trial form before it posts to the Salesforce provisioning server? I have read something about LMA, but can I add something to this code instead of using LMA: ?
 
 
 
 
<form action="http://www.salesforce.com/leadcapture/PartnerSignupServlet" method="post" name="signup_form"
  target="_blank" onsubmit="return window.confirm(&quot;Te dispones a enviar información a una página externa.\n¿Estás
  seguro de que deseas proceder?&quot;);"> 
 
 
                        <input type="hidden" name="process_form" value="true"> 
<input type="hidden" name="UserUsername" value=""> 
<input type="hidden" name="LeadSource" value="Trialforce"> 
<input type="hidden" name="formName" value="xxxxxxxx"> 
<input type="hidden" name="Lead.Partner_Account__c" value="xxxxxxx">
 
             <input type="hidden" name="successPage" value="http://www.salesforce.com/form/trial/conf/freetrial-conf.jsp"> 
            <input type="hidden" name="failPage" value="http://www.salesforce.com/form/trial/conf/freetrial-error.jsp"> 
<input type="hidden" name="Lead.Referrer_Company__c" value="Salesforce.com Alliances"> 
<input type="hidden" name="Product_Interest__c" value="Alliances TEST">
<input type="hidden" name="CompanyLanguage" value="en_US"> 
            <div>
 
 
thank you!