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
Jacob W LandisJacob W Landis 

how to have a outputlink or buttonlink redirect to a flow in visualforce page

how to have a outputlink or buttonlink redirect to a flow in visualforce page ?

Thanks
KaranrajKaranraj
Try the below code in a visulforce page
<apex:outputLink value="/flow/YourFlowName">Flow Name</apex:outputLink>
Thanks,
Karanraj
http://www.karanrajs.com
 


 
Jacob W LandisJacob W Landis
The visualforce page is a site public page, by doing what you suggested , got authorized error for the flow link.
KaranrajKaranraj
Under site public access settings make sure guest user have create access on your flow object create permission on object and also make sure that you have enabled  edit access on fields that we are using to create record in our flow.