📄 documentaddtype.asp
字号:
<%@ LANGUAGE = VBScript %>
<%response.expires=0%>
<!--#include file="asp/sqlstr.asp"-->
<!--#include file="asp/opendb.asp"-->
<%
oabusyname=request.cookies("oabusyname")
oabusyusername=request.cookies("oabusyusername")
oabusyuserdept=request.cookies("oabusyuserdept")
oabusyuserlevel=request.cookies("oabusyuserlevel")
if oabusyusername="" then
response.write("<script language=""javascript"">")
response.write("window.top.location.href='default.asp';")
response.write("</script>")
response.end
end if
%>
<html>
<head>
<meta http-equiv="expires" content="no-cache">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<link rel="stylesheet" href="css/css.css">
<script language="javascript1.2" src="js/openwin.js"></script>
<title>公文类型管理</title>
<style type="text/css">
<!--
.style2 {color: #0d79b3;
font-weight: bold;
}
.style7 {color: #2d4865}
-->
</style>
</head>
<body topmargin="0" leftmargin="0">
<center>
<table width="583" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="21"><div align="center">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="2" height="25"><span class="style2"><img src="images/main/l3.gif" width="2" height="25"></span></td>
<td background="images/main/m3.gif"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="21"><div align="center"><span class="style2"><img src="images/main/icon.gif" width="15" height="12"></span></div></td>
<td class="style7">公文传阅</td>
</tr>
</table></td>
<td width="1"><span class="style2"><img src="images/main/r3.gif" width="1" height="25"></span></td>
</tr>
</table>
<font color="0D79B3"></font></div></td>
</tr>
</table>
<table width="1%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
</tr>
</table>
<table>
<tr>
<td>公文类型管理 </td>
<form method="post" action="senddatecontrol.asp">
<td>
<input type="submit" name="submit" value="返回">
</td>
</form>
</tr>
</table>
</center>
<br>
<center>
<%
userlevel=request("userlevel")
olduserlevel=request("olduserlevel")
id=request("id")
'-----------------------------------------------
if request("submit")="增加" and userlevel<>"" then
set conn=opendb("oabusy","conn","accessdsn")
set rs=server.createobject("adodb.recordset")
sql="select * from texttype where typename='" & userlevel&"' and delflag=false"
rs.open sql,conn,1
if not rs.eof and not rs.bof then
%>
<font color=red><%=userlevel%>已经存在,请换名重试!</font><br>
<%
else
sql = "Insert Into texttype (typename) Values('"&userlevel& "')"
conn.Execute sql
%>
<font color=red><%=userlevel%>增加成功!</font>
<%
end if
end if
'---------------------------------------------------
if request("submit")="删除" then
set conn=opendb("oabusy","conn","accessdsn")
sql="update texttype set delflag=true where number="&id
conn.execute sql
%>
<font color=red><%=userlevel%>删除成功!</font>
<%
end if
'---------------------------------------------------
if request("submit")="修改" and userlevel<>"" then
'判断是否有与修改的职位相同的
set conn=opendb("oabusy","conn","accessdsn")
set rs=server.createobject("adodb.recordset")
sql="select * from texttype where typename='" & userlevel&"' and number<>"&id
rs.open sql,conn,1
if not rs.eof and not rs.bof then
%>
<font color=red><%=userlevel%>已经存在,请换名重试!</font><br>
<%
else
sql = "update texttype set typename='" & userlevel & "' where number=" & id
conn.Execute sql
%>
<font color=red>修改成功!</font>
<%
end if
end if
%>
<table border="0" cellpadding="0" cellspacing="1" bgcolor="B0C8EA">
<%
set conn=opendb("oabusy","conn","accessdsn")
set rs=server.createobject("adodb.recordset")
sql="select * from texttype where delflag=false"
rs.open sql,conn,1
while not rs.eof and not rs.bof
%>
<tr bgcolor="D7E8F8">
<form method="post" action="documentaddtype.asp">
<td height="24">
<input type="submit" name="submit" value="删除"></td><td height="24"><input type="hidden" name="olduserlevel" value="<%=rs("typename")%>"><input type="hidden" name="id" value=<%=rs("number")%>><input type="text" name="userlevel" value="<%=rs("typename")%>" maxlentgh="25"></td><td height="24"><input type="submit" name="submit" value="修改"></td>
</form>
</tr>
<%
rs.movenext
wend
%>
</table>
<form method="post" action="documentaddtype.asp">
<input type="text" name="userlevel"><input type="submit" name="submit" value="增加">
</form>
</center>
</body>
</html>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -