yijian.asp

来自「asp+access的电影免费网站源码是个很好的学习例子大家可以下来学习」· ASP 代码 · 共 35 行

ASP
35
字号
<!--#include file="articleconn.asp"-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>用户意见</title>
</head>

<body><% dim zuimanyi
	  zuimanyi=request.form("manyi")
	  
	  set rs111=server.createobject("adodb.recordset")                                                                                     
      sql="select * from user_yijian " 
      rs111.open sql,conn,1,3
      if (zuimanyi="playspeed") then
	  rs111("playspeed")=int(rs111("playspeed"))+1
	  end if
	  if (zuimanyi="updatespeed") then
	  rs111("updatespeed")=int(rs111("updatespeed"))+1
	  end if
	  if (zuimanyi="movies_amount") then
	  rs111(("movies_amount"))=rs111(("movies_amount"))+1
	  end if
	  rs111.update
      rs111.close
      set rs111=nothing
	  response.write "<script language='javascript'>"
       response.write "history.go(-1);"
         response.write "</script>"
         response.end
   %>

</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?