You need to sign in to do that
Don't have an account?
Jeff_SF
visual force page error (see error)
Am upgrading the API for a VF page and getting an error:
Error: Special_Considerations_PDF line 51, column 42: The element type "br" must be terminated by the matching end-tag "</br>"
Error: The element type "br" must be terminated by the matching end-tag "</br>".
here is the line 51 referenced in the error :
<tr><td>Paper Supply<br>Order Protocol:</td><td><apex:outputText value="{!account.Supply_Status__c}"/></td></tr>
Where does this matching end tag need to go? Is there a sample page availble ithat would be helpful?
Thank you:
Error: Special_Considerations_PDF line 51, column 42: The element type "br" must be terminated by the matching end-tag "</br>"
Error: The element type "br" must be terminated by the matching end-tag "</br>".
here is the line 51 referenced in the error :
<tr><td>Paper Supply<br>Order Protocol:</td><td><apex:outputText value="{!account.Supply_Status__c}"/></td></tr>
Where does this matching end tag need to go? Is there a sample page availble ithat would be helpful?
Thank you:
you have missed the </br> end tag.
try with below.
If this helps, please mark it as best answer.
Thanks!!
You can able to update the API version of your VF pages.
follow the below steps:
1.Edit a Visualforce page or component and click Version Settings
2.Select the Version of the Salesforce API. This is also the version of Visualforce used with the page or component.
3.Click Save.
Note:
You can only modify the version settings for a page or custom component on the Version Settings tab when editing the page or component in Setup.
Refer the below screenshots:
If this helps, Please mark it as best answer.
Thanks!!
Thank you
Thank you