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

📄 scoredel.asp

📁 工资管理系统功能齐全包括工人工资信息查询.
💻 ASP
字号:
<!--#include file="CheckLogin.asp"-->
<!--#include file="StudentConn.asp" -->
<%
	strSheetName=Request("SheetName")
	strStudentNum=Request("StudentNum")
	if strSheetName<>"" and strStudentNum<>"" then
		MM_editConnection = MM_StudentConn_STRING
		MM_editQuery = "delete from " & strSheetName & " where StudentNum = '" & strStudentNum & "'"
		Set MM_editCmd = Server.CreateObject("ADODB.Command")
		MM_editCmd.ActiveConnection = MM_editConnection
		MM_editCmd.CommandText = MM_editQuery
		MM_editCmd.Execute
		MM_editCmd.ActiveConnection.Close
		response.redirect "ScoreQuery2.asp?" & Session("strQureyString")
	end if
%>

⌨️ 快捷键说明

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