Re: Access Denied error in frames
Posted By:
Christopher_Koenigsberg
Posted On:
Saturday, February 17, 2007 12:07 PM
I think you're up against a basic security principle -- "cross-site scripting" is prohibited, in most or all browsers.
Otherwise someone could potentially set up a frameset with your web site in one frame, and extract some personal info from your users, in another frame.
Re: Access Denied error in frames
Posted By:
Anonymous
Posted On:
Thursday, February 15, 2007 11:10 AM
function displayURL(){
self.childframe1.location.href="http://www.google.com";
// page process to loading. Try childframe1.onload or onredystatechange
alert("child frame URL="+self.childframe1.location.href);