📄 gotoplaycheck.asp
字号:
<!-- #include file="conn.asp"-->
<%
i=request("i")
id=request("id")
sql="select * from Movie where id="&id
set rs=server.CreateObject("adodb.recordset")
rs.open sql,conn,1,1%>
<%
customer=session("Customer")
sqluser="select * from user where Customer='"&Customer&"'"
set rsuser=server.CreateObject("adodb.recordset")
rsuser.open sqluser,conn,1,3
if rsuser("lx")="终生会员" then
dianshu=int(rsuser("dianshu"))-0
else
dianshu=int(rsuser("dianshu"))-int(rs("dianshu"))
end if
rsuser("dianshu")=dianshu
rsuser.update
rsuser.close
set rsuser=nothing
conn.close
set conn=nothing
%><html>
<head>
<meta http-equiv="refresh" content="0; url=play.asp?i=<%=i%>&id=<%=id%>">
<title>无标题文档</title>
</head>
<body>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -