Play Games

Search This Blog

Thursday, November 2, 2017

Access/refer custom Label in Visualforce Page

Solution : Use {!$Label.LabelName}.
If label Name is 'Blog_URL' ,then in vf page you can refer it as {!$Label.Blog_URL}
Example:
<apex:page>
  <b>Custom Label Referred likt this in vf page </b>: {!$Label.Blog_URL}
</apex:page>

No comments:

Post a Comment