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

📄 employee_deal.asp

📁 北京华信东方网络办公系统
💻 ASP
字号:
<%@ Language=VBScript %>
<!--#include file= "../dbase.asp"-->
<!--#include file= "employee_function.asp"-->
<html>
	<head>
		<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
		<meta name="GENERATOR" Content="Microsoft Visual Studio.NET 7.0">
	</head>
	<body TOPMARGIN="0" LEFTMARGIN="0" RIGHTMARGIN="0" BOTTOMMARGIN="0">
		<%
DealWay = request.QueryString.Item("DealWay")
Condition = request.QueryString.Item("Condition")
'response.Write request.Form.Item
FormCount=cint(request.Form.Count)
redim FieldData(1,FormCount-1)
for i=1 to FormCount
	FieldData(0,i-1)=request.Form.key(i)
	FieldData(1,i-1)=request.Form.Item(i)	
next
	if DealWay="addnew" then
	call EmployeeAddnew(FieldData)
	response.Redirect("employee_addnew.asp")
	elseif DealWay="modify" then
	call EmployeeModify(FieldData,Condition)
	response.Redirect("employee_modify.asp?ID="&Condition)
	elseif DealWay="Delete" then
	call EmployeeDelete(Condition)
	response.Redirect("employee_index.asp")
	end if
response.End()
%>
	</body>
</html>

⌨️ 快捷键说明

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