Issue
I'm trying to open a URL in my application through the displayHelpResource(href)
function.
But I'm being shown the following :
This content cannot be dispalyed in a frame
To help protect the security of information you enter into this website, the publisher of this content does not allow it to be displayed in a frame.
I've understood that the site is blocking the Frame access. What can be done to open the desired URL using the displayHelpResource(href)
function.
Solution
You can add noframes=true
to the href you stop frames being used
http:xxxxx?noframes=true
The noframes=true
text is removed from the href by the help system before it is actually used.
Answered By - greg-449
Answer Checked By - Dawn Plyler (JavaFixing Volunteer)