您的位置:首页 > 其它

禁止图片另存为、禁止右键、禁止打印

2015-06-02 09:16 330 查看
客户可以会提出的要求,虽然不能完全禁止,但基本满足需求。
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Test_Default" %>
<!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 runat="server">
<title>aaa</title>
<!--禁止图片右上角提示菜单-->
<meta http-equiv="imagetoolbar" content="no" />
<style type="text/css">
@media print
{
body
{
display: none;
}
}
</style>
</head>
<body oncontextmenu="self.event.returnValue=false" onselectstart="return false">
<form id="form1" runat="server">
dfsdfsdsfda
<img src="../images/validate_code.jpg" />
</form>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: