📄 err.asp
字号:
<!--#include file="conn.asp"-->
<title>电影报错</title>
<style type="text/css">
<!--
td { font-size: 12px; line-height: 17px }
body { font-size: 12px; line-height: 17px }
p { margin-top: 1; margin-bottom: 1 }
a:link { text-decoration: none; color: black }
a:visited { text-decoration: none; color: black }
a:active { text-decoration: none }
a:hover { text-decoration: underline; color: red }
-->
</style>
<%
errr=request("errr")
id=request("id")
if errr="yes" then
sqlerr="update data set err=err+1 where id="&id
set rs_err=conn.execute(sqlerr)
set rs_err=nothing
%>
<table border="0" width="100%" id="table1">
<tr>
<td align="center">
<font color="#FF0000">谢谢您的提醒,我们会尽快修复此影片!</font>
</td>
</tr>
</table>
<%else%>
<table border="0" width="100%" id="table1">
<tr>
<td align="center">
<font color="#FF0000">此为影片报错按钮,如果您无法正常观看此影片请报错!
</font>
</td>
</tr>
<tr>
<td align="center">
<form method="POST" action="?id=<%=id%>&errr=yes">
<input type="submit" value="我要报错" name="B1">
</form>
</td>
</tr>
</table>
<%
end if
conn.close
set conn=nothing
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -