Monday, April 2, 2012

How to display a custom title on a VisualForce page

if you set showHeader to false, you need to put your own head and title tags in the page, like
<apex:page> 
<head> 
<title>Case: {!aCase.CaseNumber}</title> 
</head>  
<body>
...content...  
</body>
</apex:page>

No comments:

Post a Comment