📄 find.asp
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<%
' *** Restrict Access To Page: Grant or deny access to this page
MM_authorizedUsers=""
MM_authFailedURL="error.asp"
MM_grantAccess=false
If Session("MM_Username") <> "" Then
If (true Or CStr(Session("MM_UserAuthorization"))="") Or _
(InStr(1,MM_authorizedUsers,Session("MM_UserAuthorization"))>=1) Then
MM_grantAccess = true
End If
End If
If Not MM_grantAccess Then
MM_qsChar = "?"
If (InStr(1,MM_authFailedURL,"?") >= 1) Then MM_qsChar = "&"
MM_referrer = Request.ServerVariables("URL")
if (Len(Request.QueryString()) > 0) Then MM_referrer = MM_referrer & "?" & Request.QueryString()
MM_authFailedURL = MM_authFailedURL & MM_qsChar & "accessdenied=" & Server.URLEncode(MM_referrer)
Response.Redirect(MM_authFailedURL)
End If
%>
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>用户资料管理系统-查找页面</title>
<style type="text/css">
<!--
@import url("../css/table.css");
-->
</style>
</head>
<body>
<table width="500" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td class="bg1"><div align="center">用户资料管理系统——用户查找</div></td>
</tr>
<tr>
<td class="fk_table"> </td>
</tr>
<tr>
<td class="fk_table"><form id="form2" name="form2" action="find_name.asp">
<table width="100%" border="1">
<tr>
<td width="100"><div align="center">按姓名查询</div></td>
<td width="180"><label>
<div align="center">
<input name="name" type="text" id="name" size="20" />
</div>
</label></td>
<td><label>
<div align="center">
<input type="submit" name="button" id="button" value="查询" />
</div>
</label></td>
</tr>
</table>
</form>
</td>
</tr>
<tr>
<td class="fk_table"><form id="form1" name="form1" method="get" action="find_if.asp">
<table width="100%" border="1">
<tr>
<td width="100"><div align="center">按关键字查询</div></td>
<td width="180"><label>
<div align="center">
<input type="text" name="text" id="text" />
</div>
</label></td>
<td><label>
<div align="center">条件
<select name="select" size="1" id="select">
<option>请选择</option>
<option value="name">姓名</option>
<option value="sex">性别</option>
<option value="birthday">生日</option>
<option value="tel">电话</option>
<option value="address">地址</option>
</select>
</div>
</label></td>
<td width="70"><label>
<div align="center">
<input type="submit" name="button2" id="button2" value="提交" />
</div>
</label></td>
</tr>
</table>
</form>
</td>
</tr>
<tr>
<td class="bg1"><div align="center">用户资料管理系统©版权所有</div></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -