我用asp做BBS,可代码出问题了,请高手帮帮忙!
以下是(index.asp)显示帖子标题页面的部分代码:<%@LANGUAGE="VBSCRIPT"CODEPAGE="936"%><!--#includefile="c...
以下是(index.asp)显示帖子标题页面的部分代码:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="conn.asp"-->
<!--#include file="header.htm"-->
<%sub maintalk()%>
<%
set showbbs = server.CreateObject("ADODB.recordset")
showbbsStr="select * from bbs order by wtime desc"
showbbs.open showbbsStr,conn,3,2
if showbbs.EOF and showbbs.BOF then
%>
<br><center>暂时还没有文章,现在<a href="say.asp">发表</a></center>
<%else
showbbs.PageSize=10'分页
PageN=10 '显示10个页数.
PageCount=showbbs.PageCount
Page=int(request("Page"))
CurrentPageN=int(request("CurrentPageN"))
if Page<=0 or request("Page")="" or request("Page")="0" then Page=1
if CurrentPageN<=0 or request("CurrentPageN")="" then CurrentPageN=1
showbbs.AbsolutePage=Page
%>
<br>
<%for i=1 to showbbs.PageSize%>
<div id="arttitle">
<a href="show.asp id=<%=showbbs("id")%>"><%=showbbs("title")%></a><br><br>
</div>
<div id="authorn">
作者:
<%if showbbs("countwb")=0 then%>
回复<<%=showbbs("countwb")%>><!--回复条数 -->
<%else%>
<a href="show.asp id=<%=showbbs("id")%>">
回复<<font color=#ff0000><b><%=showbbs("countwb")%></b></font>>
</a><!--回复条数 -->
<%end if%>
<%wt=showbbs("wtime")'如果为撰写当天的时间,红色显示。
if year(now())=year(wt) and month(now())=month(wt) and day(now())=day(wt) then%>
撰写/修改时间:<font color=#ff0000><%=wt%></font>
<%else%>
撰写/修改时间:<%=wt%>
<%end if%>
<a href="modify.asp id=<%=showbbs("id")%>">修改</a>
<a href="del.asp id=<%=showbbs("id")%>">删除</a>
</div>
以下是(show.asp)显示帖子内容的页面,也就是点击标题进入的页面:
<!--#include file="conn.asp"-->
<!--#include file="header.htm"-->
<%id=request.querystring("id")
set show=conn.execute("select * from bbs where id="&id&" ")%>
<%sub maintalk
'主文章%>
<br>
<div id="arttitle">
<%=show("title")%><br><br>
</div>
<div id="authorn">
作者:<a href="authordetail.asp auname=<%=show("name")%>"><%=show("name")%></a>
撰写/修改时间:<%=show("wtime")%>
<a href="modify.asp id=<%=show("id")%>">修改</a>
<a href="del.asp id=<%=show("id")%>">删除</a>
</div>
请高手帮帮忙,现在点击帖子标题进入不了(show.asp)这个页面,说是页面不存在或已改名之类的?index.asp页面当中,对于帖子标题所做
的删除和修改所连接的页面也是同样的问题,请问是怎么一回事?哪里出问题了?急 展开
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="conn.asp"-->
<!--#include file="header.htm"-->
<%sub maintalk()%>
<%
set showbbs = server.CreateObject("ADODB.recordset")
showbbsStr="select * from bbs order by wtime desc"
showbbs.open showbbsStr,conn,3,2
if showbbs.EOF and showbbs.BOF then
%>
<br><center>暂时还没有文章,现在<a href="say.asp">发表</a></center>
<%else
showbbs.PageSize=10'分页
PageN=10 '显示10个页数.
PageCount=showbbs.PageCount
Page=int(request("Page"))
CurrentPageN=int(request("CurrentPageN"))
if Page<=0 or request("Page")="" or request("Page")="0" then Page=1
if CurrentPageN<=0 or request("CurrentPageN")="" then CurrentPageN=1
showbbs.AbsolutePage=Page
%>
<br>
<%for i=1 to showbbs.PageSize%>
<div id="arttitle">
<a href="show.asp id=<%=showbbs("id")%>"><%=showbbs("title")%></a><br><br>
</div>
<div id="authorn">
作者:
<%if showbbs("countwb")=0 then%>
回复<<%=showbbs("countwb")%>><!--回复条数 -->
<%else%>
<a href="show.asp id=<%=showbbs("id")%>">
回复<<font color=#ff0000><b><%=showbbs("countwb")%></b></font>>
</a><!--回复条数 -->
<%end if%>
<%wt=showbbs("wtime")'如果为撰写当天的时间,红色显示。
if year(now())=year(wt) and month(now())=month(wt) and day(now())=day(wt) then%>
撰写/修改时间:<font color=#ff0000><%=wt%></font>
<%else%>
撰写/修改时间:<%=wt%>
<%end if%>
<a href="modify.asp id=<%=showbbs("id")%>">修改</a>
<a href="del.asp id=<%=showbbs("id")%>">删除</a>
</div>
以下是(show.asp)显示帖子内容的页面,也就是点击标题进入的页面:
<!--#include file="conn.asp"-->
<!--#include file="header.htm"-->
<%id=request.querystring("id")
set show=conn.execute("select * from bbs where id="&id&" ")%>
<%sub maintalk
'主文章%>
<br>
<div id="arttitle">
<%=show("title")%><br><br>
</div>
<div id="authorn">
作者:<a href="authordetail.asp auname=<%=show("name")%>"><%=show("name")%></a>
撰写/修改时间:<%=show("wtime")%>
<a href="modify.asp id=<%=show("id")%>">修改</a>
<a href="del.asp id=<%=show("id")%>">删除</a>
</div>
请高手帮帮忙,现在点击帖子标题进入不了(show.asp)这个页面,说是页面不存在或已改名之类的?index.asp页面当中,对于帖子标题所做
的删除和修改所连接的页面也是同样的问题,请问是怎么一回事?哪里出问题了?急 展开
2个回答
展开全部
晕!! 从没见过这样带参数的链接
<a href="show.asp id=<%=showbbs("id")%>"><%=showbbs("title")%></a>
<a href="modify.asp id=<%=showbbs("id")%>">修改</a>
<a href="del.asp id=<%=showbbs("id")%>">删除</a>
改为
<a href="show.asp?id=<%=showbbs("id")%>"><%=showbbs("title")%></a>
<a href="modify.asp?id=<%=showbbs("id")%>">修改</a>
<a href="del.asp?id=<%=showbbs("id")%>">删除</a>
注意:在页面后带参数的格式是 show.asp?参数名=参数值
多个参数用 & 分开,如: show.asp?参数名1=参数值1&参数名2=参数值2&
参数名3=参数值3......
<a href="show.asp id=<%=showbbs("id")%>"><%=showbbs("title")%></a>
<a href="modify.asp id=<%=showbbs("id")%>">修改</a>
<a href="del.asp id=<%=showbbs("id")%>">删除</a>
改为
<a href="show.asp?id=<%=showbbs("id")%>"><%=showbbs("title")%></a>
<a href="modify.asp?id=<%=showbbs("id")%>">修改</a>
<a href="del.asp?id=<%=showbbs("id")%>">删除</a>
注意:在页面后带参数的格式是 show.asp?参数名=参数值
多个参数用 & 分开,如: show.asp?参数名1=参数值1&参数名2=参数值2&
参数名3=参数值3......
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询