?? czqx_manage_sort_ok.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 + -