|
|
I reany need a java code that will disable"Internet exploror"
Save web page as feture.
i all ready "Disable" right click -+- ex tool bar.
But i would realy like to get it. i lose a lot of content.
Can any one please help me out?
|
|
|
|
It's impossible. All you are doing when a user browses to a page is serving them your source code. The browser then interprets it. If you don't want users to see your code, then don't use a web application.
|
|
|
|
|
|
i tried many time to search to disable save page as option if anybody have this type of code pls post
|
|
|
|
<html>
<script language="javascript">
document.onmousedown=disableclick
status="Right Click Disabled"
function disableclick(e) {
if( event.button==2 )
alert("Sorry...you can't copy INTECH Policy");
return false;
}
</script>
<body onSelectStart="return false;">
Hello this is tariq younas.
MCTS for web having blog and group.
[.netHotShots]
</body>
</html>
Now your copy and right click is disabled.
Cheers.
Tariq Younas
|
|
|