📄 error.asp
字号:
<%
%><%
const MAX_RECORD_NUMBER = 200
const HIS_SUCCESS = 3000
const HIS_DB_CANNT_LOCK = 3006
const HIS_NO_PRIVILEGE = 3007
dim HIS_ERR_MSG
if(not isObject(session("HIS_ERR_MSG"))) then
set HIS_ERR_MSG = Server.CreateObject("Scripting.Dictionary")
HIS_ERR_MSG.add "HIS_DB_CONN_ERROR" , "Can't connect to database in history module"
HIS_ERR_MSG.add "HIS_DB_SELECT_ERROR" , "Error when execute a select history in history module"
HIS_ERR_MSG.add "HIS_CATEGORY_NOT_EXIST" , "The special category is not exist in history module"
HIS_ERR_MSG.add "HIS_MATERIAL_NOT_EXIST" , "The special material is not exist in history module"
set session("HIS_ERR_MSG") = HIS_ERR_MSG
else
set HIS_ERR_MSG = session("HIS_ERR_MSG")
end if
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -