📄 news_view.asp
字号:
<!-- #include file="include/config_news.asp" -->
<%
dim id:id=trim(request.querystring("id"))
if not(isnumeric(id)) then
call format_redirect("news.asp")
response.end
end if
%>
<!-- #include file="include/jk_ubb.asp" -->
<!-- #include file="include/config_review.asp" -->
<!-- #include file="include/conn.asp" -->
<%
dim username,word,tim,counter,cname,sname,comto,pic,tt
sql="select jk_class.c_name,jk_sort.s_name,"&n_sort&".* from jk_class,jk_sort,"&n_sort&" where jk_class.c_id="&n_sort&".c_id and jk_sort.s_id="&n_sort&".s_id and "&n_sort&".hidden=1 and "&n_sort&".id="&id
set rs=conn.execute(sql)
if rs.eof and rs.bof then
rs.close:set rs=nothing:close_conn
server.transfer "news.asp"
response.end
end if
cid=rs("c_id")
sid=rs("s_id")
username=rs("username")
cname=rs("c_name")
sname=rs("s_name")
topic=rs("topic")
if rs("ishtml")=1 then
word=rs("word")
else
word=code_jk(rs("word"))
end if
tim=rs("tim")
counter=rs("counter")
ispic=rs("ispic")
comto=rs("comto")
pic=rs("pic")
rs.close
tit=cname&"("&sname&")"
tit_fir=""
call web_head(0,0,1,0,0)
sql="update news set counter=counter+1 where id="&id
conn.execute(sql)
'-----------------------------------center---------------------------------
call font_word_js()
%>
<table border=0 width='98%' cellspacing=0 cellpadding=0 align=center>
<table border=0 width='98%' cellspacing=0 cellpadding=0 class=tf>
<tr><td align=center height=50><font class=red_3 size=3><b><% response.write topic %></b></font></td></tr>
<tr><td align=center class=gray><%response.write time_type(tim,33)&" "&web_var(web_config,1)%> <%call font_word_action()%> 出处:<%response.write comto%></td></tr>
<tr><td height=10></td></tr>
<tr><td valign=top calss=bw><%
if ispic=true then
word="<p align=center><img src='"&url_true(web_var(web_upload,1),pic)&"' border=0 width=350 style='margin-right: 1em; float: left'></p>"&word
end if
call font_word_type(word&" <font class=gray>(本文已被浏览 "&counter&" 次)</font>")%></td></tr>
<tr><td height=10></td></tr>
<tr><td>
<table border=0 width='100%'>
<tr><td width='25%' class=htd>
发布人:<%response.write format_user_view(username,1,1)%><br>
<%response.write put_type("news")%>
</td><td width='75%' class=htd>
<%
sql="select id,topic from news where hidden=1 and id="&id-1
set rs=conn.execute(sql)
if rs.eof and rs.bof then
topic="<font class=gray>没有找到相关文章</font>"
else
topic="<a href='news_view.asp?id="&rs(0)&"'>"&code_html(rs(1),1,25)&"</a>"
end if
rs.close
response.write "上篇文章:"&topic&"<br>"
sql="select id,topic from news where hidden=1 and id="&id+1
set rs=conn.execute(sql)
if rs.eof and rs.bof then
topic="<font class=gray>没有找到相关文章</font>"
else
topic="<a href='news_view.asp?id="&rs(0)&"'>"&code_html(rs(1),1,25)&"</a>"
end if
rs.close
response.write "下篇文章:"&topic
%>
</td></tr></table>
</td></tr>
</table>
<table border=0 width='98%' cellspacing=0 cellpadding=0 class=tf>
<tr><td height=5></td></tr>
<tr><td><% call review_type(n_sort,id,"news_view.asp?id="&id,1) %></td></tr>
<tr><td height=5></td></tr>
<tr><td><% call news_class_sort(cid,sid) %></td></tr>
<tr><td height=5></td></tr>
</table>
<%
'---------------------------------center end-------------------------------
call web_center(1)
'------------------------------------right---------------------------------
call news_sea()
call news_scroll("jt0","",3,15,1)
call news_new_hot("jt0","","new",10,12,1,6,0)
call news_new_hot("jt0","","hot",10,12,1,6,0)
call news_pic("",2,10,6)
'----------------------------------right end-------------------------------
call web_end(0)
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -