📄 bug_ok.asp
字号:
<!--#include file="conn.asp" -->
<%
if session("name")="" or session("dd")="" then
response.write "SORRY <br>"
response.write "数据在携带中出现意外!<br>"
response.write "<a href=login.asp target=_top>回去重来</a>"
response.end
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>客户管理系统</title>
<%
dim time
'--------------------------------------------------------
title=Request.Form ("title")
name=Request.Form ("name")
bufen=Request.Form ("bufen")
phone=Request.Form ("phone")
email=Request.Form ("email")
content=Request.Form ("content")
time=Request.Form ("time")
'--------------------------------------------------------
if title="" then title="未填" end if
if name="" then name="未填" end if
if bufen="" then bufen="未填" end if
if phone="" then phone="未填" end if
if email="" then email="未填" end if
if content="" then content="无详细内容" end if
'--------------------------------------------------------
'--------------------------------------------------------
set rs=server.createobject("adodb.recordset")
sql="select * from bug where id is null "
rs.open sql,conn,1,3
rs.AddNew
'--------------------------------------------------------
rs("title")= title
rs("name")= name
rs("bufen")=bufen
rs("phone")= phone
rs("email")=email
rs("vest_m")=session("mclass")
rs("content")=content
rs("time")=time
'--------------------------------------------------------
rs.Update
rs.Close
set rs=nothing
%><html>
<head>
<title>正在进入管理页面</title>
<meta http-equiv=refresh content="2; url=admin.asp">
<BODY bgcolor="#ffffff" text="#000000" link="#000080" alink="#800000" vlink="#2f2f4f" marginheight=0 marginwidth=0 topmargin=10 leftmargin=20 rightmargin=0>
Loading ....
<div align="center">
<div align="center">
<table border="0" width="554" id="table2" cellspacing="0" cellpadding="0">
<tr>
<td style="font-family: 宋体,'Arial Narrow','Times New Roman'; font-size: 9pt; line-height: 150%"> </td>
</tr>
<tr>
<td style="font-family: 宋体,'Arial Narrow','Times New Roman'; font-size: 9pt; line-height: 150%">
<p align="center"><font color="#FF0000">错误报告提交成功!</font></td>
</tr>
<tr>
<td style="font-family: 宋体,'Arial Narrow','Times New Roman'; font-size: 9pt; line-height: 150%"> </td>
</tr>
</table>
</div>
</div>
</body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -