You need to sign in to do that
Don't have an account?

Implementing web-to-lead concept for other object????????
can we implement web-to-lead concept on other object,
Like web-to-Account, web-to-Contact and web-to-Custom object......??????
please help me.....
No this feature is released by Salesforce only for Stadard S Object Lead as per looking at business needs.
There are several ways you could implement a web-to-??? feature with other objects.
1. Public sites page running visualforce+apex.
2. Integration where the other page is using either the SOAP or REST API to post data into salesforce. This requires a salesforce user to initiate the connection with Salesforce.
3. There are weirder, funkier ways as well, such as a web form that sends an email handled by an inbound email service.
The nice thing about web-to-lead is the ease of generating the form, and the fact that it is standard HTML that any web developer can decorate with CSS to make it look like whatever you want it to. You won't get that kind of declarative ease when implementing this with other objects, but it is certainly possible.
Here's an example of web-to-case in Visualforce in this article here:
http://wiki.developerforce.com/page/Creating_Custom_Web-To-Case_Forms_Using_Visualforce_and_Sites
I did it using sites on one of our projects:
steps:
1)Created a custom object to store collected data
2) Created apex controller & visualforce form page to collect data
3)Exposed visualforce page/apex classes on sites.
Let me know if you need anymore help.
http://moometric.com/integrations/sf/wordpress-form-submissions-salesforce-custom-object/
Hello N@ani,
Yeah it is possible to implement web-to-lead functionality on other objects such as Accounts, Contacts, and Custom Objects in Salesforce using the Web-to-Anything (W2A) feature. With W2A you can create web forms that can be embedded on your website or used in email campaigns to gather information from leads or customers and create new records in Salesforce.
To avail W2A you will need to generate the HTML code for the web form and change it to include the object and field information for the record you want to create and then from there you can customize the form to include any further fields or validation rules that you need. It's mandatary to keep in mind that the W2A feature is only available for Salesforce Enterprise, Unlimited, and Developer editions and may need additional configuration or customization depending on your specific requirements.
If the above answer helped you mark it as best answer.
THank You!