tsys _rss程序(2)


Conn.Open ConnStr 
Dim sql 
Sql="select Top "& RssNewsList_PageSize &" Title,FilePath,AddTime,KeyWord,Content,Classtitle,EditorTitle From view_NewsInfo where Del=0 Order By addTime DESC" 
Set Rs=Server.CreateObject("ADODB.RecordSet") 
Rs.open sql,conn,1,2 
IF RS.EOF AND RS.BOF Then 
Response.Write("<item></item>") 
Else 
do while not rs.eof  
Response.Write("<item>")&RS("Title") 
Response.Write("<title><![CDATA["&Rs("Title")&"]]></title>") 
Response.Write("<description><![CDATA["&RS("KeyWord")&"]]>") 
Response.Write("<content><![CDATA["&RS("Content")&"]]></content>") 
Response.Write("<link>" &url&RS("FilePath")&"</link>") 
Response.Write("<subject>"&RS("Classtitle")&"</subject>") 
Response.Write("<creator>"&RS("EditorTitle")&"</creator>") 
Response.Write("<date>"&RS("addtime")&"</date>") 
Response.Write("</description></item>") 
RS.MoveNext 
loop  
end if  
rs.close  
set rs=nothing  
Response.write sRssEnd  
%> 
陆续放出少年不在修改版 tsys修改办法```

http://www.im286.com/thread-1370996-1-1.html