📄 report_error.asp
字号:
<!--#include file="film_conn.asp"-->
<%if request.cookies("userid")="" or request.cookies("password")="" or application(""&request.cookies("userid")&"")="" then
response.write "<script>alert('您尚未注册成为本站会员或者未登陆,不能进入!');window.close();</Script>"
response.end
end if
%>
<%
if request("n")="1" then
if trim(request("title"))="" or trim(request("content"))="" then
response.redirect "report_error.asp?title="&request("title")&""
response.end
end if
set rsb=server.createobject("adodb.recordset")
rsb.open "select * from totalk",conn,1,3
rsb.addnew
rsb("title")=request("title")
rsb("conten")=request("content")
rsb("user")=request("userid")
rsb.update
rsb.close
set rsb=nothing
conn.close
set conn=nothing
response.write "<script>alert('该信息成功发送,我们收到后马上进行处理!');window.close();</Script>"
end if
%>
<html>
<head>
<STYLE>BODY {
FONT-SIZE: 12px
}
TD {
FONT-SIZE: 12px
}
DIV {
FONT-SIZE: 12px
}
.bk {
BORDER-RIGHT: #ffffff 1px solid; BORDER-TOP: #ffffff 1px solid; BORDER-LEFT: #ffffff 1px solid; COLOR: #000000; BORDER-BOTTOM: #ffffff 1px solid; BACKGROUND-COLOR: #cccccc
}
</STYLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<LINK href="<%=weburl%>/images/style.css" type=text/css rel=stylesheet>
<title><%=webname%> - 影片错误报告</title>
</head>
<body bgcolor="#F9F9F9" oncontextmenu="window.event.returnValue=false" ondragstart="window.event.returnValue=false" onselectstart="event.returnValue=false">
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="95%" id="AutoNumber1">
<tr>
<td width="100%">
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="98%" id="AutoNumber2">
<form method="POST" action="report_error.asp?n=1">
<tr>
<td colspan="2" bgcolor="#C0C0C0" height="25">
<p align="center"><b><%=request("title")%>影片错误报告</b></td>
</tr>
<tr>
<td bgcolor="#EBEBEB" height="25">
<p align="center">会员帐号:</td>
<td bgcolor="#EBEBEB" height="25"><%=request.cookies("userid")%>
</td>
</tr>
<tr>
<td bgcolor="#EBEBEB" height="25">
<p align="center">反馈标题:</td>
<td bgcolor="#EBEBEB" height="25">
<input type="text" name="title" size="25" value="<%=request("title")%>"></td>
</tr>
<tr>
<td bgcolor="#EBEBEB" height="25">
<p align="center">反馈内容:</td>
<td bgcolor="#EBEBEB" height="25">
<textarea rows="5" name="content" cols="32"></textarea></tr>
</table>
</center>
</div>
</td>
</tr>
<tr>
<td width="100%" height="30" align="center">
<input type="submit" value="确认提交" name="B1">
<input type="reset" value="重置" name="B2"></td></form>
</tr>
</table>
</center>
</div>
<p align="center"><a href="javascript:window.close()">[关闭窗口]</a></p>
</body>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -