Reputation: 87
I have created a simple form ( using visual force page & apex class ) in salesforce. Now I need to use that form as it is in my other web application. Is there any way to do this? Using Salesforce API or any other method.
Upvotes: 0
Views: 1746
Reputation: 19637
If you want to expose this page to unauthenticated users (guests) you can create a "Site" in Salesforce and add the page there. It's good for quick stuff, where you don't need a full-blown Site.com or customer/partner community solution. Then in that other page you could embed this as <iframe>
or make yet another form that'd have action
pointing to that VF page...
Upvotes: 1