Click here to Skip to main content
15,894,362 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
how to disable copy and paste event in ie ,firrefox,chrome,safari
Posted
Comments
Sergey Alexandrovich Kryukov 14-Aug-14 3:04am    
Why?
—SA
Vikrant Chauhan 14-Aug-14 3:08am    
cause client want to make his website content not to be copied
Thanks7872 14-Aug-14 3:15am    
And? Any efforts from you?
Vikrant Chauhan 20-Aug-14 9:50am    
thanks i found the solution
http://stackoverflow.com/questions/13647000/is-there-a-cross-browser-way-to-prevent-cut-copy-and-paste-on-a-website-in-plai[^]

 
Share this answer
 
Comments
Vikrant Chauhan 14-Aug-14 3:06am    
thanks
Maciej Los 14-Aug-14 3:11am    
You're welcome ;)
http://stackoverflow.com/questions/13647000/is-there-a-cross-browser-way-to-prevent-cut-copy-and-paste-on-a-website-in-plai[^]
 
Share this answer
 
If you are using asp.net controls then use this code might this will help you:-

<asp:textbox id="txtconfirmEmail" maxlength="50" runat="server" cssclass="csstxtbox" oncopy="return false" oncut="return false" onpaste="return false" xmlns:asp="#unknown">
 
Share this answer
 

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