showarticle.aspx:
<!--#include file="func.aspx"-->
<html>
<head>
<title>瀏覽文章</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="Description" Content="探討ASp,Php 編程,介紹Visual Basic ,Visual C++
等業界最新技術 並提供 免費的各種服務 包括 免費統計系統,免費調查
並提供 招聘網站和 同學錄 的服務">
<meta name="Keywords" Content="探討ASp,Php 編程,介紹Visual Basic ,Visual C++
等業界最新技術 並提供 免費的各種服務 包括 免費統計系統,免費調查
並提供 招聘網站和 同學錄 的服務">
<link REL="SHORTCUT ICON" href="http://www.asp888.net/site.ico">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<link rel="stylesheet" type="text/css" href="/doufu.css">
</head>
<body>
<!--廣告開始-->
<img src="http://edu.cnzz.cn/NewsInfo/images/banner.gif">
<!--廣告結束-->
<%
dim strClassid as string
dim conn as SQLConnection
dim sqlCmd as SQLCommand
dim sqlRead as SQLDataReader
dim strSQL as string
dim intLen as integer
dim intRecCount as integer
strClassid=request.querystring("classid")
conn=GetConn()
strSQL="select count(*) from lanmu where classid=" & strClassid & ""
sqlCmd=new SQLCommand(strSQL,conn)
sqlCmd.ActiveConnection.Open()
sqlCmd.Execute(sqlRead)
sqlCmd.ActiveConnection.Close()
sqlRead.Read()
if cInt(sqlRead(0))=0 then
response.write("對不起,當前這個欄目沒有內容")
response.end
end if
intRecCount=sqlRead(0)
strSQL="select * from lanmu,lanmuclass where lanmu.classid=lanmuclass.classid and lanmu.classid=" & strClassID & " and lanmu.isuse='1' order by id desc"
sqlCmd=new SQLCommand(strSQL,conn)
sqlCmd.ActiveConnection.Open()
sqlCmd.Execute(sqlRead)
'處理分頁顯示
dim intPageCount as integer
dim intStart as integer
if isNumeric(request.querystring("start")) then
intStart=Cint(request.querystring("start")) '本頁資料起使位置
else
intStart=0
end if
intLen=10 '每頁需要顯示的資料數量
'以下計算 當前的 記錄的分頁頁數
if (intRecCount mod intLen)=0 then
intPageCount=intRecCount/intLen
else
intPageCount=(intRecCount-(intRecCount mod intLen))/intLen+1
end if
dim i as integer
'將得到的sqlRead向後移動 start 指定的 位置
for i=0 to intStart-1
sqlRead.read()
next
'顯示table 分頁Bar
WritePage(intStart,"showarticle.aspx",intLen ,intPageCount ,intRecCount )
%>
<table border=1 width=100%>
<tr>
<td width=10% align=center>編號</td>
<td width=50% nowrap>主題</td>
<td width=25% align=center>作者</td>
<td width=25% align=center>閱讀次數</td>
</tr>
<%
for i=0 to intLen-1
atEnd=sqlRead.read()
if not atEnd then exit for%>
<tr>
<td align=center><%=sqlRead("id")%></td>
<td><a href="viewArticle.aspx?id=<%=sqlRead("id")%>"><%=sqlRead("title")%></a></td>
<td align=center><%=sqlRead("userid")%></td>
<td align=center><%=sqlRead("viewnum")%></td>
</tr>
<%next%>
</table>
<p></p>
</body>
</html>
這個程式沒有什麼說的,我們看看就可以了。如果有什麼看不懂的地方,別著急,再看看下面的這個程式:)
viewarticle.aspx 檔案是用來查看具體的某一篇文章的,因為時間的關係,我沒有把這個程式的評論和打分的
功能添加上,哎!我也很傷心,等到以後吧!
viewarticle.aspx
<!--#include file="func.aspx"-->
<%
dim conn as SQLCOnnection
dim sqlRead as SQLDataReader
dim sqlCmd as SQLCommand
dim strSQL as string
dim strID as string
conn=getConn()
strID=request.querystring("id")
strSQL="select * from lanmu,lanmuclass where lanmu.classid=lanmuclass.classid and lanmu.id=" & strID & ""
sqlCmd=new SQLCommand(strSQL,conn)
sqlCmd.ActiveConnection.Open()
sqlCmd.Execute(sqlRead)
if not sqlRead.Read() then
'沒有留言資訊
echoErr("對不起,當前這個欄目還沒有內容")
end if
%>
<html>
<head>
<title>瀏覽文章__技術專欄__<%=sqlRead("title")%></title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="Description" Content="探討ASp,Php 編程,介紹Visual Basic ,Visual C++
等業界最新技術 並提供 免費的各種服務 包括 免費統計系統,免費調查
並提供 招聘網站和 同學錄 的服務">
<meta name="Keywords" Content="探討ASp,Php 編程,介紹Visual Basic ,Visual C++
等業界最新技術 並提供 免費的各種服務 包括 免費統計系統,免費調查
並提供 招聘網站和 同學錄 的服務">
<link REL="SHORTCUT ICON" href="http://www.asp888.net/site.ico">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<link rel="stylesheet" type="text/css" href="/doufu.css">
</head>
<body>
<!--廣告開始-->
<img src="http://edu.cnzz.cn/NewsInfo/images/banner.gif">
<!--廣告結束-->