TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Ganesh M
NA
63
54.5k
show content in web page
Sep 25 2012 2:08 AM
Hi,
I am developing the application for online virtual class.
i am using following code for prevent copy and save and print
<SCRIPT TYPE="text/javascript">
function AccessClipboardData() {
try {
window.clipboardData.setData('text', "No print data");
} catch (err) {
// txt = "There was an error on this page.\n\n";
// txt += "Error description: " + err.description + "\n\n";
// txt += "Click OK to continue.\n\n";
// alert(txt);
}
}
<!--
//Disable right click script
//visit http://www.rainbow.arch.scriptmania.com/scripts/
var message = "Sorry, right-click has been disabled";
///////////////////////////////////
function clickIE() { if (document.all) { (message); return false; } }
function clickNS(e) {
if
(document.layers || (document.getElementById && !document.all)) {
if (e.which == 2 || e.which == 3) { (message); return false; }
}
}
if (document.layers)
{ document.captureEvents(Event.MOUSEDOWN); document.onmousedown = clickNS; }
else { document.onmouseup = clickNS; document.oncontextmenu = clickIE; }
document.oncontextmenu = new Function("return false")
// -->
</SCRIPT>
<script language="JavaScript" type="text/javascript">
setInterval("AccessClipboardData()", 300);
var ClipBoardText = "";
if (window.clipboardData) {
ClipBoardText = window.clipboardData.getData('text');
if (ClipBoardText == "") {
alert('Sorry you have to allow the page to access clipboard');
// hide the div which contains your data
document.all("divmaster").style.display = "none"
} else {
document.onkeydown = function(ev) {
var a;
ev = window.event;
if (typeof ev == "undefined") {
alert("PLEASE DON'T USE KEYBORD");
}
a = ev.keyCode;
alert("PLEASE DON'T USE KEYBORD");
return false;
}
document.onkeyup = function(ev) {
var charCode;
if (typeof ev == "undefined") {
ev = window.event;
alert("PLEASE DON'T USE KEYBORD");
} else {
alert("PLEASE DON'T USE KEYBORD");
}
return false;
}
}
}
</script>
but its works fine in IE
but not support in other browser.
How to achieve this?
How to prevent web page from copy save and print and print screen that support all browser
Any other way to show content in web page from database
i am trying it more than one month please any one help me.
Reply
Answers (
0
)
how to bind check box list
validation