📄 policysave.asp
字号:
<!--#include file="../mzfunc.asp"-->
<!--#include file="admintop.asp"-->
<!--#include file="isadmin.asp"-->
<% dim pytitle,pybody,filename,errorcount
errorcount=""
pytitle=trim(request.Form("pytitle"))
pybody=server.HTMLEncode(trim(request.Form("pybody")))
filename=request.Form("filename")
if pytitle="" or pybody="" then
response.write"<script>alert('请把资料填写详细');</script>"
if trim(filename)<>"" then
errorcount=delbackdb(filename)
response.write"<script>alert('"&errorcount&"');history.back();</script>"
end if
end if
if errorcount="" then
sql="insert into policy(pytitle,pybody,pyimg,times) values('"&pytitle&"','"&pybody&"','"&filename&"','"&now()&"')"
conn.execute(sql)
end if
%>
<div align="center">
<table width="400" border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" bgcolor="#F0F0F0">
<tr>
<td height="36" bgcolor="#B1E1F3">
<div align="center"><strong>添加成功</strong></div></td>
</tr>
<tr>
<td><div align="center">上传文件时一定要把所在填定的内容填写详细,以免发生不必要的错误</div></td>
</tr>
<tr>
<td><div align="center"><a href="javascript:window.close()">【关闭窗口】</a></div></td>
</tr>
</table>
</div>
<!--#include file="adminfoot.asp"-->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -