login.asp

来自「oracle9i程序事例集」· ASP 代码 · 共 22 行

ASP
22
字号
<%@LANGUAGE="VBSCRIPT"%>
<%
if request.form("identity")="Admin" then
   response.Redirect "admin/login.html"
else 
  if request.form("identity")="Customer" then
     response.Redirect "customer/index.asp"
  else
     response.Redirect "index.asp"
  end if
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>

<body>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?