<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include file="../Connections/cmc.asp" -->
<%
Dim news
Dim news_numRows

Set news = Server.CreateObject("ADODB.Recordset")
news.ActiveConnection = MM_cmc_STRING
news.Source = "SELECT * FROM blog"
news.CursorType = 0
news.CursorLocation = 2
news.LockType = 1
news.Open()

news_numRows = 0
%>

<?xml version="1.0" encoding="utf-8" ?> 
<rss VERSION="2.0">
<channel>
<TITLE>CMC - The Wider Environment</TITLE> 
<description>The Wider Environment is a China news blog, produced by CMC and focusing on the economy, environment and China’s evolving role in the global economic and political system. Come back regularly for daily updates.</description> 
<copyright>CMC</copyright> 
<LINK>http://www.china-britain.org/</link> 
<language>en-us</language> 
<lastBuildDate>Tue, 04 Oct 2005 16:11:22 +0800</lastBuildDate> 
<image>
  <TITLE>http://www.china-britain.org</TITLE> 
  <width>100</width> 
  <height>28</height> 
  <LINK>http://www.china-britain.org</link> 
  <url>http://www.china-britain.org/images/cmc_logo_small.gif</url> 
  </image>
<item>
  <TITLE><%=(news.Fields.Item("blog_title").Value)%></TITLE> 
  <LINK>http://www.china-britain.org/news/detail.asp?blog_id=<%=(news.Fields.Item("blog_id").Value)%></link> 
  <description> Description pending
</description> 
  <pubDate><%=(news.Fields.Item("blog_date_added").Value)%><%=(news.Fields.Item("blog_date_added").Value)%></pubDate> </item>
  </channel>
  </rss>

<%
news.Close()
Set news = Nothing
%>

