分享
 
 
 

用ASP+Access制作论坛教程

王朝asp·作者佚名  2006-11-24
窄屏简体版  字體: |||超大  

在网上介绍如何编写制作论坛的文章不少,但据我观察大多数的代码都有不同程度的错误,会误导大家。所以我写这篇文章的目的就是把经过我测试成功的代码与思路提供给大家。下面就让我们从数据库的建立开始:

用access建立数据库:

首先我们要建立一个存放帖子的数据库,在这里我介绍用access2000建立数据库的方法。

我们先要建立一个名为news.mdb的数据库文件,然后在其中点“新建”选择“设计视图”建立两个表,一个名为details用来存放回复,另一个名为titles用来存放主题如图:

制作过程详解:

在titles中建立以下字段,如图:

注意:

1

右键单击“titleID”选择“主键”,出现钥匙图形。

2

这里的“shu”不可以改为“number”否则会出现错误,王国容的那本《asp & web 数据库》中就犯了这样的错误。

3

将“日期/时间”类型的字段的默认值都设为now()

在titles中建立以下字段,如图:

将“日期/时间”类型的字段的默认值都设为now()。建立完成后,要设置这两个表的关联。点击

按钮,出现如下对话框:

将titles中的titleID拖至details中的titleID上松手,出现如下对话框:(如图设置)

然后保存就可以了。这样一个提供储存的数据库就建立好了。接下来我们要编写asp程序了。首先让我们先来分析论坛所需要的功能。大概需要以下几个功能:

1

显示主题

2

发布主题

3

显示回复

4

发布回复

于是,我们根据这些功能,需要编写6个asp文件:

title.asp、titlenew.asp、titleout.asp、detail.asp、detnew.asp、detout.asp

还有一个文件是必需的(在我的程序中)adovbs.inc,它提供程序中的常数值如:“adopenstatic”。(点击这里下ADOVBS.INC载源文件)每个文件的代码:

title.asp:

<%@LANGUAGE="VBSCRIPT" CODEPAGE="CP_ACP"%>

<!--#include virtual="adovbs.inc"-->

<!--#include file="titleout.asp"-->

<%

const head="我的论坛"

dbpath=server.MapPath("news.mdb")

set conn=server.CreateObject("adodb.connection")

conn.open"driver={Microsoft Access Driver (*.mdb)};dbq="&dbpath

sql="select titleID,createdate as 主题发布时间,lastnewsdate as 最后回复时间,name as 作者,shu as 回复篇数,subject as 主题 from titles order by lastnewsdate desc"

set rs=server.CreateObject("adodb.recordset")

rs.open sql,conn,adopenstatic

%>

<html>

<head>

<title><%=head%></title>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<style type="text/css">

<!--

body {font-family: "宋体"; font-size: 12px}

table {font-family: "宋体"; font-size: 12px}

a:link {font-family: "宋体"; font-size: 12px; color: #000000; text-decoration: none}

a:visited {font-family: "宋体"; font-size: 12px; color: #666666; text-decoration: none}

a:hover {font-family: "宋体"; font-size: 12px; color: #ff3300; text-decoration: underline}

-->

</style>

</head>

<body>

<!--输出主题-->

<%

rs.pagesize=10

page=clng(request("page"))

if page<1 then page=1

if page>rs.pagecount then page=rs.pagecount

%>

<form action="title.asp" method="get">

<table border="0" cellpadding="0" cellspacing="0" width="90%">

<tr>

<td align="right" width="100%">

<%

if page<>1 then

response.Write("<a href=title.asp?page=1>第一页</a>&nbsp;")

response.Write("<a href=title.asp?page="&(page-1)&">上一页</a>&nbsp;")

end if

if page<>rs.pagecount then

response.Write("<a href=title.asp?page="&(page+1)&">下一页</a>&nbsp;")

response.Write("<a href=title.asp?page="&rs.pagecount&">最后一页</a>&nbsp;")

end if

%>

转到第<input type="text" name="page" size="3">页&nbsp;

页码:<font color="#FF0000"><%=page%></font>/<font color="#FF0000"><%=rs.pagecount%></font>

</td>

</tr>

</table>

</form>

<center>

<table border="0" bgcolor="#999999" cellpadding="3" cellspacing="1" width="780">

<tr bgcolor="#00FFFF">

<td height="18" width="150" align="center">主题发布时间</td>

<td height="18" width="350" align="center">主题</td>

<td height="18" width="100" align="center">作者</td>

<td height="18" width="30" align="center">回复</td>

<td height="18" width="150" align="center">最后回复时间</td>

</tr>

<%

On Error Resume Next

rs.absolutepage=page

for i=1 to rs.pagesize

titleoutput rs

rs.movenext

if rs.eof then exit for

next

%>

</table>

</center>

<form action="title.asp" method="get">

<table border="0" cellpadding="0" cellspacing="0" width="90%">

<tr>

<td align="right" width="100%">

<%

if page<>1 then

response.Write("<a href=title.asp?page=1>第一页</a>&nbsp;")

response.Write("<a href=title.asp?page="&(page-1)&">上一页</a>&nbsp;")

end if

if page<>rs.pagecount then

response.Write("<a href=title.asp?page="&(page+1)&">下一页</a>&nbsp;")

response.Write("<a href=title.asp?page="&rs.pagecount&">最后一页</a>&nbsp;")

end if

%>

转到第<input type="text" name="page" size="3">页&nbsp;

页码:<font color="#FF0000"><%=page%></font>/<font color="#FF0000"><%=rs.pagecount%></font>

</td>

</tr>

</table>

</form>

<!--下面为输入表单-->

<form action="titlenew.asp" method="post">

<center>

<table border="0">

<tr>

<td>姓名:</td>

<td><input type="hidden" size="30" name="name" value="<%=session("name")%>"><%=session("name")%></td>

</tr>

<tr>

<td>信箱:</td>

<td><input type="text" size="30" name="Email" value="<%=session("Email")%>"></td>

</tr>

<tr>

<td>主题:</td>

<td><input type="text" size="60" name="subject"></td>

</tr>

<tr>

<td>内容:</td>

<td><textarea name="words" rows="8" cols="60"></textarea></td>

</tr>

<tr>

<td align="center" colspan="2"><input type="submit" value="提交">

&nbsp;<input type="reset" value="清空"></td>

</tr>

</table>

</center>

</form>

</body>

</html>

titlenew.asp:

<%@LANGUAGE="VBSCRIPT" CODEPAGE="CP_ACP"%>

<!--#include virtual="adovbs.inc"-->

<%

dbpath=server.MapPath("news.mdb")

set conn=server.CreateObject("adodb.connection")

conn.open"driver={Microsoft Access Driver (*.mdb)};dbq="&dbpath

name=request("name")

Email=request("Email")

subject=request("subject")

words=request("words")

if subject="" or words="" or name="" or Email="" then

outputmsg="字段不能为空,请填写完整信息!"

else

set rs=server.CreateObject("adodb.recordset")

rs.open "titles",conn,adopendynamic,adlockpessimistic

rs.addnew

rs("name")=name

rs("Email")=Email

rs("subject")=subject

rs("words")=words

rs("shu")=0

rs.update

outputmsg="您的主题已加入!"

session("name")=name

session("Email")=Email

end if

%>

<html>

<head>

<title>Untitled Document</title>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<meta http-equiv="refresh" content="3;URL=title.asp">

</head>

<body>

<%=outputmsg%>

</body>

</html>

titleout.asp:

<%

sub titleoutput(rs)

%>

<tr bgcolor="#ffffff">

<td valign="top" height="18"><%=rs("主题发布时间")%></td>

<td valign="top" height="18"><a href="detail.asp?titleID=<%=rs("titleID")%>"><%=rs("主题")%></a></td>

<td valign="top" height="18"><%=rs("作者")%></td>

<td valign="top" align="right" height="18"><%=rs("回复篇数")%></td>

<td valign="top" height="18"><%=rs("最后回复时间")%></td>

</tr>

<%

end sub

%>

detail.asp

<%@LANGUAGE="VBSCRIPT" CODEPAGE="CP_ACP"%>

<!--#include file="detout.asp"-->

<%

if not session("passed") then

response.Redirect("title.asp")

end if

%>

<%

dbpath=server.MapPath("news.mdb")

set conn=server.CreateObject("adodb.connection")

conn.open"driver={Microsoft Access Driver (*.mdb)};dbq="&dbpath

titleID=request("titleID")

set rs=conn.execute("select * from titles where titleID="&clng(titleID))

if rs.eof then

response.Redirect("title.asp")

else

sql="select * from details where titleID="&clng(titleID)&" order by detailID desc"

set rsdetail=conn.execute("select * from details where titleID="&clng(titleID)&" order by detailID")

end if

%>

<html>

<head>

<title>Untitled Document</title>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

</head>

<body>

<%

words=replace(" "&rs("words"),chr(13),"<br>")

Email="<a href="""&rs("Email")&"mailto:"&rs("Email")&""">"&rs("Email")&"</a>"

%>

<center>

<table>

<tr>

<td>作者:<%=rs("name")%></td>

<td>Email:<%=Email%></td>

<td>时间:<%=rs("createdate")%></td>

</tr>

<tr>

<td colspan="3">主题:<%=rs("subject")%></td>

</tr>

<tr>

<td colspan="3"><%=words%></td>

</tr>

</table>

</center>

<%

while not rsdetail.eof

detailoutput rsdetail

rsdetail.movenext

wend

%>

<center>发表回复</center>

<form action="detnew.asp" method="post">

<input type="hidden" name="titleID" value="<%=Request("TitleID")%>">

<center>

<table border="0">

<tr>

<td>姓名:</td>

<td><input type="text" size="30" name="name" value="<%=session("name")%>"></td>

</tr>

<tr>

<td>信箱:</td>

<td><input type="text" size="30" name="Email" value="<%=session("Email")%>"></td>

</tr>

<tr>

<td>主题:</td>

<td><input type="text" size="60" name="subject"></td>

</tr>

<tr>

<td>内容:</td>

<td><textarea name="words" rows="8" cols="60"></textarea></td>

</tr>

<tr>

<td align="center" colspan="2"><input type="submit" value="提交">

&nbsp;<input type="reset" value="清空"></td>

</tr>

</table>

</center>

</form>

<center><a href="title.asp">返回主题页</a></center>

</body>

</html>

detnew.asp

<%@LANGUAGE="VBSCRIPT" CODEPAGE="CP_ACP"%>

<!--#include virtual="adovbs.inc"-->

<%

dbpath=server.MapPath("news.mdb")

set conn=server.CreateObject("adodb.connection")

conn.open"driver={Microsoft Access Driver (*.mdb)};dbq="&dbpath

titleID=request("titleID")

name=request("name")

Email=request("Email")

subject=request("subject")

words=request("words")

if subject="" or words="" or name="" or Email="" then

outputmsg="字段不能为空,请填写完整信息!"

else

set rs=server.CreateObject("adodb.recordset")

rs.open "details",conn,adopendynamic,adlockpessimistic

rs.addnew

rs("name")=name

rs("Email")=Email

rs("subject")=subject

rs("words")=words

rs("titleID")=titleID

rs.update

outputmsg="您的回复已加入!"

session("name")=name

session("Email")=Email

sql="update titles set lastnewsdate=now(),shu=shu+1 where titleID="&clng(titleID)

conn.execute(sql)

end if

%>

<html>

<head>

<title>Untitled Document</title>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<meta http-equiv="refresh" content="1;URL=detail.asp?titleID=<%=titleID%>">

</head>

<body>

<center><%=outputmsg%></center>

</body>

</html>

detout.asp

<%

sub detailoutput(rs)

words=replace(server.HTMLEncode(" "&rs("words")),chr(13),"<br>")

words=replace(words," ","&nbsp;")

Email="<a href="""&rs("Email")&"mailto:"&rs("Email")&""">"&rs("Email")&"</a>"

%>

<center>

<table>

<tr>

<td>作者:<%=rs("name")%></td>

<td>Email:<%=Email%></td>

<td>时间:<%=rs("newdate")%></td>

</tr>

<tr>

<td colspan="3">主题:<%=rs("subject")%></td>

</tr>

<tr>

<td colspan="3"><%=words%></td>

</tr>

</table>

</center>

<%

end sub

%>

这个程序只是一个简单的范例,还有许多功能没有加入,只是给大家作为参考。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有