📄 vote.asp
字号:
<%@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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -