一个BBS的源代码(三)
程序员文章站
2024-01-28 20:21:16
=============================case "content"============================= 显示内容if request("keyword")...
=============================
case "content"
=============================
显示内容
if request("keyword") <> "" then keyword = request("keyword") else keyword = ""
%>
<table align=center border=0 cellpadding=1 cellspacing=0 width=650>
<tr>
<td class="menu">
<a href="/">飞林庄</a>-><a href="<%= asp_file_name %><% if keyword <> "" then response.write "?keyword=" & keyword %>">经验交流</a>->怎样输出图像</td>
</tr>
</table>
<table align=center border=0 cellpadding=8 cellspacing=0 width=650>
<tr>
<td bgcolor=#000000>
<%
which = request("which")
if isnumeric( which ) then
session("bbs_which") = which
点击数加一
con.execute( "update bbs set [点击]=[点击]+1 where [序号]=" & which )
sql = "select * from bbs where [序号]=" & which
recbbs.open sql , con , 1
if not recbbs.eof then
title = recbbs.fields("题目")
session("bbs_whichtitle") = title
%>
<p><font color=#66ff99>序号</font>:<font color=#6699ff>e<%= which %></font><br>
<font color=#66ff99>作者</font>:<%= server.htmlencode( recbbs.fields("作者") ) %><br>
<font color=#66ff99>题目</font>:<%= server.htmlencode( title ) %><br>
<font color=#66ff99>时间</font>:<%= recbbs.fields("时间") %><br>
<br>
<pre>
<%= server.htmlencode( recbbs.fields("内容") ) %>
</pre>
</p>
<%
end if
recbbs.close
sql = "select * from bbsreply where [原文]=" & which
recreply.open sql , con , 3
allid = "e" & which
do while not recreply.eof
id = recreply.fields("序号")
allid = allid & ":" & id
%>
<p><font color=#66ff99>序号</font>:<font color=#6699ff><%= id %></font><br>
<font color=#66ff99>作者</font>:<%= server.htmlencode( recreply.fields("作者") ) %><br>
<font color=#66ff99>题目</font>:<%= server.htmlencode( recreply.fields("题目") ) %><br>
<font color=#66ff99>时间</font>:<%= recreply.fields("时间") %><br>
<br>
<pre>
<%= server.htmlencode( recreply.fields("内容") ) %>
</pre>
</p>
<%
recreply.movenext
if recreply.eof then exit do
loop
recreply.close
end if
%>
</td>
</tr>
</table>
<table align=center border=0 cellpadding=7 cellspacing=0 width=650>
<tr>
<td class=menu>
<form action="<%= asp_file_name %>" method=post>
<input type=hidden id=job name=job value=reply>
账号:<input id=userid name=userid maxlength=30 size=30>
密码:<input id=password maxlength=30 name=password size=30 type=password><br>
题目:<input id=title maxlength=80 name=title size=72 value="回复:<%= title %>"><br>
<textarea cols=80 id=content name=content rows=10></textarea><br>
<input type=submit value=" 回 复 ">
</form>
<p>
选中文章:
<select id=which name=which size=1>
上一篇: asp去掉html,保留img br p div的正则实现代码
下一篇: ssh-keygen使用
推荐阅读
-
一个BBS的源代码(三)
-
JAVA_新建一个方法并且求三个数中的最大值
-
网店转让平台越来越多,用户该如何选择一个靠谱的第三方平台呢?
-
三个点在同一个半圆的概率_Cartographer源码阅读之附 1—probability_values.h/c:占据概率相关...
-
三星和LG的下一个战场:智能汽车
-
sketchup怎么画一个多功能的三层笔筒?
-
马云吹过的牛又实现一个!菜鸟联合通达系宣布:长三角快递次日达
-
开放源代码 - PHP的MVC框架哪一个性价比最高?yii2 还是 thinkphp
-
现在有三个不同类型的网站(在同一个服务器下),用户表字段字各不相同,怎么实现单点登陆?
-
逆置一个单链表的三种方法