if request.Cookies("shiwei_username")="" then
%>
top.location.href="../index.asp"
response.end
end if
%>
- 大类添加
body {
background-color:#FFFFFF;
}
if fla62="0" and request.Cookies("shiwei_id")"1" then
%>
你不具备此权限,请与管理员联系!
response.end
end if
%>
function check()
{
if (document.form1.bigclass.value=="")
{
alert("有*号的必须填写!");
return false;
}
}
添加大类(带*号的为必填项)
类型:
收入
支出
大类名称:
*
else
nowtype=request("type")
nowbigclass=request("bigclass")
sql="select * from money_bigclass where bigclass='"&nowbigclass&"'"
set rs=conn.execute(sql)
if rs.eof=false then
%>
alert("您输入的大类名已经存在!")
window.history.go(-1)
response.end
end if
sql="insert into money_bigclass(bigclass,type) values('"&nowbigclass&"',"&nowtype&")"
conn.execute(sql)
%>
alert("大类添加成功!")
window.location.href="bigclass.asp"
end if
%>