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
Rohit SharmaGRohit SharmaG 

How to bypass Browser Security of IE 10 in VF page

Hello Dears,

I used
<apex:outputLink value="https://cs11.salesforce.com/{!caseID}">Back</apex:outputLink>

in VF page and  render Pgae as PDF. But when i click on Back page in not navigation to the respective page in IE 10.

Working fine in Crome.

Please assist on this.
David "w00t!" LiuDavid "w00t!" Liu
Try changing it to this:
<apex:outputLink value="/{!caseID}">Back</apex:outputLink>

The first part of the URL is already implied!