📄 showsummary.asp
字号:
<!--#include file="config.asp"-->
<!--#include file="conn.asp"-->
<!--#include file="format.asp"-->
<!--#include file="error.asp"-->
<!--#include file="body/incjs.asp"-->
<!--#include file="body/top.asp"-->
<!--#include file="body/summarycat.asp"-->
<!--#include file="body/showsummary_body.asp"-->
<!--#include file="body/foot.asp"-->
<%
stats="学校师资"
dim founderr,errmsg
founderr=false
errmsg=""
if request.querystring("summary_id")="" then
founderr=true
errmsg=errmsg+"<br>"+"<li>请指定操作的对象!"
else
if not isInteger(request.querystring("summary_id")) then
founderr=true
errmsg=errmsg+"<br>"+"<li>非法的文章id参数。"
end if
end if
if founderr then
call diserror()
response.end
else
call top()
rcount
call showsummary_body()
call endpage()
end if
function rcount()
set rscount=conn.execute("select * from summary")
sql="UPDATE summary SET summary_count = summary_count + 1 where summary_id="&request.querystring("summary_id")
conn.execute (sql)
rscount.close
set rscount=nothing
end function
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -