logout.asp
来自「客户资源管理系统 1.显示所有客户资料 2.添加/修改客户资料; 3.添加」· ASP 代码 · 共 54 行
ASP
54 行
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%
Option Explicit
Response.Buffer = True
Response.Expires = 0
Response.Expiresabsolute = Now() - 1
Response.AddHeader "pragma","no-cache"
Response.AddHeader "cache-control","private"
Response.CacheControl = "no-cache"
%>
<%
Session.Abandon()
Response.Redirect("login.asp")
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>Pcook CRM Design By:Pcook.com.cn</title>
<style type="text/css">
<!--
a:link {
font-family: "宋体";
font-size: 12px;
color: #005288;
text-decoration: none;
}
a:visited {
font-family: "宋体";
font-size: 12px;
color: #005288;
text-decoration: none;
}
a:hover {
font-family: "宋体";
font-size: 12px;
color: #005288;
text-decoration: underline;
}
a:active {
font-family: "宋体";
font-size: 12px;
color: #005288;
text-decoration: none;
}
-->
</style>
</head>
<body>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?