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
Sai Anudeep MeelaSai Anudeep Meela 

Visual Force page question.


Hi,

Thanks for the help I found the page. But I have another question I am trying to complete a challenge and was asked to create VisualForce page and was mentioned to add a snippet to create a page for that, but when I am trying to do that it failing with an error message.

Here is the error message:

[Error] Error: FlowPage line 2, column 26: Open quote is expected for attribute "name" associated with an element type "flow:interview"
[Error] Error: Open quote is expected for attribute "name" associated with an element type "flow:interview".

Here is the code tried for
<apex:page>
  <flow:interview name = “New_Customer_Flow” />
</apex:page>


Any help would really be appreciated.

Thanks,
Sai
Best Answer chosen by Sai Anudeep Meela
William TranWilliam Tran
Try this:
 
<apex:page>
   <flow:interview name="New_Customer_Flow"/>
</apex:page>
I just use normal quotes ""

As a common practice, if your question is answered, please choose 1 best answer. 
But you can give every answer a thumb up if that answer is helpful to you. 

Thanks

All Answers

William TranWilliam Tran
Try this:
 
<apex:page>
   <flow:interview name="New_Customer_Flow"/>
</apex:page>
I just use normal quotes ""

As a common practice, if your question is answered, please choose 1 best answer. 
But you can give every answer a thumb up if that answer is helpful to you. 

Thanks
This was selected as the best answer
Sai Anudeep MeelaSai Anudeep Meela
Thanks that did help me.