Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Web Programming > JavaScript > Javascript
|
Javascript General Javascript discussions.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Javascript section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 27th, 2005, 11:23 AM
Registered User
 
Join Date: Jan 2005
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default Access denied error (Needs Print functionality)

I want to print different domain's pages print that are opened in Iframe.
I need some solution regarding this.
I am not able to find any solution till now. I am getting "denied access error" .Want to get print of google.com's page.

I created simple 3 files started.html,A.html,B.html
*********
started.html
<HTML>
<HEAD>
<script>
function PrintFrame()
{
  windowrames["A"].focus();
window.frames["A"].print();

}
</script>
</HEAD>

<BODY>

</BODY>
</HTML>
<A HREF="#" onclick="PrintFrame()">Print</A>
<IFRAME SRC="A.html" NAME="A" ></IFRAME>

<br><br><br><br><A HREF="B.html" target=A>Click here</A>
*************
*************
A.html
<HTML>
<BODY>
Here i am in window A <a href=http://google.com>google</a>
</BODY>
</HTML>
*************
*************
B.html
<HTML>
<BODY>
Here i am in window B <a href=http://google.com>google</a>
</BODY>
</HTML>


 
Old January 27th, 2005, 03:04 PM
joefawcett's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 3,074
Thanks: 1
Thanked 38 Times in 37 Posts
Default

Presumably this is another security feature.

The only workarounds I can think of would be either use msxml2.xmlhttp class to fetch the page and then load the results into your own page to print or to use Google's web service to get results.



--

Joe (Microsoft MVP - XML)





Similar Threads
Thread Thread Starter Forum Replies Last Post
ASP Access Denied Error hkccwong Classic ASP Basics 6 January 11th, 2008 04:12 AM
Print functionality abhishekgupta109 Javascript 0 May 5th, 2006 07:48 AM
how to avoid access denied error satyakishore Javascript 1 March 29th, 2006 01:48 PM
'Access is denied' error purvin Javascript 4 March 22nd, 2006 04:42 AM
please.....urgent....."access denied error while s Ramakrishna General .NET 2 October 12th, 2004 12:19 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.