⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 deleteuserdone.asp

📁 Activity——活动管理模块 Analyse——分析模块 Client——客户管理系统模块 Email——E-mail管理模块 Fee——费用管理模块 Report——报表模块 Sel
💻 ASP
字号:
<%

%>
<!--#include file='../conn.asp'-->
<%
	For Each item in request.form				'遍历表单
		if Left(item, 4) = "User" then			'如果该item前4位字符为"User"标识
			conn.execute("delete [User] where UserID="&Cint(request(item)))	'根据该item的值删除相应用户信息
		end if
	Next
%>
	<html>
	<head>
	<title>删除用户记录</title>
	<meta http-equiv="Content-Type" content="text/html; charset=gb2312"><META HTTP-EQUIV="Pragma" CONTENT="no-cache">
	<LINK 
	href="../css.css" type=text/css rel=stylesheet>
	</head>

	<body>

	<br>
	<table width="100%" border="0" cellspacing="0" cellpadding="0" align=center>
	  <tr>
		<td width="100%" height="197" align="center">
	<table border="0" cellspacing="0" cellpadding="0" height="85" bgcolor="#99ccff" width="100%">
	<tr>
	<td align="center">
	<a href="DeleteUser.asp" class=linkblue2>已删除用户记录</a>
	
		 <script>
			setTimeout("location.replace('DeleteUser.asp')",2000)
		</script>


	</td>
	</tr>
	</table>
	</td>
	</tr>
	</table>
	<p>

	</body>
	</html>

⌨️ 快捷键说明

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