vote.asp

来自「ASPSQL企业网络管理系统」· ASP 代码 · 共 19 行

ASP
19
字号
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="../include/config.asp" -->
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>

<body>
<%
str = "update vote_option set vote_num = (select (vote_num + 1) from vote_option where id = " & Request.Form("vote_option") & ") where id = " & Request.Form("vote_option")
Response.Write(str)
'Response.End()
session("conn").execute str,,adCmdText + adExecuteNoRecords
Response.Redirect("../vote/show_vote.asp")
%>
</body>
</html>

⌨️ 快捷键说明

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