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
bristolbluebearbristolbluebear 

Issues with my web to lead form

Hello

My hidden fields are not populating when creating the lead 

Here is my code:

<input type="hidden"<select  id="lead_source" name="lead_source">
<value="Exhibition: Build It South East 2015"/>
<input type="hidden"<select  id="recordType" name="recordType">
<input type="hidden"<value="012200000000vEt"/>
<br>
Expo Salesperson: <select  id="00N200000027Cgs" name="00N200000027Cgs" title="Expo Salesperson"><option value="">--None--</option>
<option value="Adrian Wild">Adrian Wild</option>
<option value="Marc Brady">Marc Brady</option>
<option value="Thomas Brooks">Thomas Brooks</option>
</select><br>
<input type="hidden"Build IT SE 2015:<input  id="00ND0000006535W" name="00ND0000006535W" type="checkbox" checked />
<br>
<input type="hidden"<select  id="Campaign_ID" name="Campaign_ID"><value="701D0000000wI6Z"/>
<br>
<input type="hidden" name="member_status" value="Enquiry created on stand " />
<br>
<input type="submit" name="submit">
</form>

Have I missed something ot have  it written wrong?
SonamSonam (Salesforce Developers) 
I believe its the format you have used:
To pass values from the web form to Salesforce, the format should be as follows:
<input type=hidden name="oid" value="00D90000000ylSJ">
<input type=hidden name="retURL" value="http://googl.com">

Try editing your page and see if this helps!