changesectiondone.asp

来自「Activity——活动管理模块 Analyse——分析模块 Client—」· ASP 代码 · 共 50 行

ASP
50
字号
<%

%>
<!--#include file='../conn.asp'-->
<%
	For Each item in request.form
		if Left(item, 7) = "Section" then
			SectionName = request(item)
			if SectionName = "" then
				SectionName = "未知"
			end if
			conn.execute("update Section set SectionName = '"& SectionName &"' where SectionID="&Cint(mid(item,8)))
		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="ChangeSection.asp" class=linkblue2>已更新部门记录</a>
	
		 <script>
			setTimeout("location.replace('ChangeSection.asp')",2000)
		</script>


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

	</body>
	</html>

⌨️ 快捷键说明

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