明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

構(gòu)建你的網(wǎng)站新聞自動(dòng)公布系統(tǒng)之3

[摘要](二)添加和管理每天的新聞內(nèi)容   當(dāng)進(jìn)行了新聞提交后,則交由一個(gè)名為addnew.asp的asp程序來對(duì)新聞內(nèi)容進(jìn)行處理,以便分類和保存,為了顯示清析,我們每提交一條新聞,下面的那個(gè)新聞內(nèi)容庫就重新讀入,以便可以查看新聞是否能成功加入都數(shù)據(jù)庫中,也可以放便地刪除新聞內(nèi)容。    現(xiàn)在看看...
(二)添加和管理每天的新聞內(nèi)容   
  當(dāng)進(jìn)行了新聞提交后,則交由一個(gè)名為addnew.asp的asp程序來對(duì)新聞內(nèi)容進(jìn)行
處理,以便分類和保存,為了顯示清析,我們每提交一條新聞,下面的那個(gè)新聞內(nèi)容
庫就重新讀入,以便可以查看新聞是否能成功加入都數(shù)據(jù)庫中,也可以放便地刪除新
聞內(nèi)容!   
  現(xiàn)在看看addnew.asp是如何完成程序處理的。   
  
《% @language="vbscript" %》   
《%   
response.buffer=true   
Response.Expires=0   
  
'保存數(shù)據(jù)   
session("title")=request.form("title")   
session("comment")=request.form("comment")   
session("pic")=request.form("pic")   
session("class_name")=request.form("class_name")   
session("head")=request.form("head")   
  
'判斷傳過來的參數(shù)符不符合要求   
if request.form("title")="" then   
response.redirect "delete.asp"   
end if   
if request.form("comment")="" then   
response.redirect "delete.asp"   
end if   
if request.form("class_name")="" then   
response.redirect "delete.asp"   
end if   
select case request.form("class_name")   
case "市場(chǎng)風(fēng)云"   
class=1   
case "IT新聞"   
class=2   
case "廣州市場(chǎng)"   
class=3   
case "保 留"   
class=4   
case "!×"   
class=4   
end select  
'連接數(shù)據(jù)庫   
%》   
《!--#include Virtual="/news/data/data.inc"--》   
《%   
  
Set rs = Server.CreateObject("ADODB.Recordset")   
sql="select * from data order by news_id ASC"   
rs.open sql,conn,3,2   
  
'查找編號(hào)   
if rs.bof then   
reco=0   
else   
rs.movelast   
reco=Clng(rs("news_id"))+1   
end if   
  
rs.addnew   
rs("news_id")=reco   
  
if request.form("head")="YES" then   
rs("news_head")=-1   
end if   
  
rs("news_class")=class   
rs("news_class_name")=request.form("class_name")   
if request.form("pic")《》"" then   
rs("news_pic")=request.form("pic")   
rs("news_title")=request.form("title")&"(圖文)"   
else   
rs("news_title")=request.form("title")   
end if   
  
  
  
if request.form("head")="YES" then   
rs("news_head")=-1   
end if   
  
tmpmess=request.form("comment")   
tmpmess=replace(tmpmess,chr(10),"  
")   
tmpmess=replace(tmpmess,"《","《")   
tmpmess=replace(tmpmess,"》","》")   
tmpmess=replace(tmpmess,"
","
")   
rs("news_comment")=tmpmess   
rs("news_year")=year(Date)   
rs("news_month")=month(Date)   
rs("news_day")=day(Date)   
if Instr(Time,"下午")》0 then   
tmp=left(right(Time,8),2)+12   
rs("news_time")=tmp&right(Time,6)   
else   
rs("news_time")=tmp&right(Time,8)   
end if   
  
rs("news_delete")=0   
rs.update   
rs.close   
  
response.redirect "delete.asp"   
%》   
    程序中首先判斷了提交的新聞是否合符條件,比如新聞標(biāo)題是不能為空的,而
換行符也得轉(zhuǎn)換為html語句的br,否則不能正常地顯示出新聞的格式,而這里采用了
一個(gè)包含文件data.inc,它的用處主要是用于連接不同的數(shù)據(jù)庫,所以asp程序都通
過包含這個(gè)文件來指定數(shù)據(jù)源,那么當(dāng)更改使用別的數(shù)據(jù)庫時(shí),只需要更改這個(gè)文
件,就能方便地實(shí)現(xiàn)來不同數(shù)據(jù)庫間的切換,是不是十分方便呢?   
  以下的data.inc文件的內(nèi)容。   
《%   
Set conn = Server.CreateObject("ADODB.Connection")   
DBPath = Server.MapPath("/")&"/news/data/data.mdb"   
conn.Open "driver={Microsoft Access Driver (*.mdb)};dbq=" & DBPath   
%》   
    還有需要注意一下的是NT和windows 98的日期時(shí)間函數(shù)所返回的值是不同的,
win98是以24小時(shí)來計(jì)算的,而NT Server則使用12小時(shí),另外加上“上午”和“下
午”來表示,因此需要作出少許的更該處理。