Click here to Skip to main content
15,890,436 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Dear All,

May i know how disable print function and readonly file in iframe ? kindly advise thank you.

example i write as below code statement, i need to disable print function and not allow to print out and read only.



<iframe
src="MKZHR-01-002(V000)%20.pdf#toolbar=0&navpanes=0&statusbar=0&view=Fit;readonly=true; disableprint=true;"
width="1024" height="800" ></iframe>
Posted
Updated 30-Jun-13 15:50pm
v2

1 solution

You can not disable print functionality on browser, but you can control the content of print using window.onafterprint and window.onbeforeprint. Below is sample

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>
	Untitled Page
</title>
    <style>
    @media print
  {
     .hide
     {
     	display:none;
     }
  }
    </style>
</head>
<body>
    <form name="form1" method="post" action="WebForm4.aspx" id="form1">
<div>

</div>
 
    <div>
        <iframe src="http://www.w3schools.com/css/css_mediatypes.asp" id="iframe1" class="hide"></iframe>
    </div>
    </form>
 
    <script>
    
  
    </script>
 
</body>
</html>
 
Share this answer
 
v3
Comments
caulsonchua 1-Jul-13 2:31am    
HI, Thank you for reply, i had try run the script, but it allow me to print out the document, Any ideas ?
Mahesh Bailwal 1-Jul-13 2:42am    
Can you tell me which browser are you using?
Prasad Khandekar 1-Jul-13 2:31am    
Hello Mahesh,

I think window.onafterprint and window.onbeforeprint are not supported by all the browsers.

Regards,
Mahesh Bailwal 1-Jul-13 3:29am    
Yes, you are right chrome does not support.
caulsonchua 1-Jul-13 2:43am    
i use google chrome and IE

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900