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

📄 czqx_manage_sort_ok.asp

📁 OFFICE办公自动化
💻 ASP
字号:
<!--#include file="../inc/conn.asp"-->
<%
sort_action=Request.form("sort_action")
title=Request.form("title") '取得新栏目名
number=Request("number")
changemod=Request("changemod")

if sort_action="add_new" then '当添加时 
	oConn.execute("insert tbioaRoleRightsType(Number,Title) values('" & number & "','" & title & "')")     

elseif sort_action="edit" then '当修改时
	oConn.execute "UPDATE tbioaRoleRightsType SET Title='" & title & "' where number=" & number

elseif changemod<>"" then '当修改时
	oConn.execute "UPDATE tbioaRoleRightsType SET Mod='" & changemod & "' where number=" & number

elseif sort_action="del" then '当删除时
	oConn.execute "DELETE FROM tbioaRoleRightsType WHERE number=" & number
	oConn.execute "DELETE FROM tbioaRoleRights WHERE TypeNumber=" & number
end if
%>
<%sub showError(msg)%>
<%=msg%> 
<%end sub%>
<%=response.redirect ("./czqx_manage.asp")%>
<!--#include file="../inc/conn_close.asp"-->
 

⌨️ 快捷键说明

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