PC6下载站

分类分类

使用ASP推出你自己网站的频道

关注+2004-10-07作者:蓝点

想自己生成自己站点的频道文件吗,看看下面的代码把。 
这只是个例子而已,但我想你完全可以根据它来建立你自己的频道。 
以后只要用户下载该.cdf文件,用户就能够订阅你的站点的频道了。 
<% 
'打开数据库连接,并定义用于格式化的变量. 
Set DBConn = Server.CreateObject("ADODB.Connection") 
DBConn.Open "DSN=YourDSN" 

BR = Chr(10) 
Quote = Chr(34) 

'用来生成频道格式 
Body = "Body = Body & "Title = " & Quote & "你的公司名" & Quote & BR 
Body = Body & "LongName = " & Quote & "你的详细公司名" & Quote & BR 
Body = Body & "Abstract = " & Quote & "你的频道说明" & Quote & BR 
'在你网站上生成的频道文件(.cdf) 
Body = Body & "SELF = " & Quote & "http://yoururl/pointcast.cdf" & Quote & BR 
Body = Body & "ContentID = " & Quote & "0" & Quote & BR 
Body = Body & "Ratings = " & Quote & "'(PICS-1.1 
&quot;http://www.rsac.org/ratingsv01.html&quot; l gen true comment &quot;RSACi North America 
Server&quot; by &quot;santry@pin-santry.com&quot; for &quot;http://yoururl.com&quot; on 
&quot;1997.09.18T17:57-0800&quot; r (n 0 s 0 v 0 l 0))'" & Quote & BR 
Body = Body & "Frequency = " & Quote & "24" & Quote & BR 
Body = Body & "Authenticate = " & Quote & "No" & Quote & BR 
Body = Body & ">" & BR & BR 

SQLQ = "SELECT * FROM YourDB WHERE ENTERDATE = #" & Date() & "#" 
'这将把今天的新东西都推出去 
Set MakeChannel = DBConn.Execute(SQLQ) 
Do Until MakeChannel.Eof 
Body = Body & "Body = Body & "Title = " & Quote & MakeChannel("Headline") & Quote & BR 
'在本例子中使用数据库,下面的代码指向数据库入口。也就是你今天想要显示的文章。 
Body = Body & "HREF = " & Quote & "http://yoururl/pointcast-news.asp?Article=" & 
MakeChannel("FileName") & Quote & BR 
Body = Body & "Type = " & Quote & "HTML" & Quote & BR 
Body = Body & "Show = " & Quote & "Channel" & Quote & BR 
Body = Body & "Precache = " & Quote & "Yes" & Quote & BR 
Body = Body & "Authenticate = " & Quote & "No" & Quote & BR 
Body = Body & ">" & BR 
Body = Body & "" & BR & BR 
MakeChannel.MoveNext 
Loop 
Body = Body & "" 
Set fs = CreateObject("Scripting.FileSystemObject") 

'生成第一个文件,每次更新时覆盖上一个文件。 
Set a = fs.CreateTextFile("d:\yourlocaldrive\pointcast.cdf", True) 
a.WriteLine(Body) 
a.Close 
%> 
展开全部

相关文章

更多+相同厂商

热门推荐

  • 最新排行
  • 最热排行
  • 评分最高
排行榜

    点击查看更多

      点击查看更多

        点击查看更多

        说两句网友评论

          我要评论...
          取消