您好,欢迎来到点滴吧! 手机版
点滴吧www.diandiba.com
记录点点滴滴,尽在点滴吧
  • 文章
  • 文章
  • 特效
  • 素材
  • 景点
您现在的位置:首页 > ASP教程 > 文章正文
asp以xml模版生成xml
更新时间:2015/1/4 23:26:57   点击:1784次

原XML文件; 

<?xml version="1.0" encoding="utf-8" ?>  
<dataroot> 
<news> 
<new> 
<title>新闻标题1</title> 
<shortdesc><![CDATA[sinker.cn flash片]]></shortdesc> 
<date>1</date> 
<link>http://www.sinker.cn</link> 
</new> 
<new> 
<title>新闻标题2</title> 
<shortdesc><![CDATA[sinker.cn flash片]]></shortdesc> 
<date>1</date> 
<link>http://www.sinker.cn</link> 
</new> 
</news>
</dataroot>

下面是我做的生成像上面那个XML内容的xml.asp文件,代码如下: 

<% @language="VBScript" @codepage="65001"%> 
<% 
Option Explicit 
Response.contentType="news/xml" 
dim conn,connstr,rs,sql 
connstr="provider=Microsoft.Jet.OLEDB.4.0;data source="&Server.MapPath("Data-2007/sou596#zuoyun.mdb")&";" 
set conn=Server.CreateObject("ADODB.Connection") 
set rs=Server.CreateObject("ADODB.RecordSet") 
conn.open connstr 
sql="select top 6 * from news order by ID desc" 
rs.open sql,conn,1,1 
Response.Write("<?xml version='1.0' encoding='utf-8'?><dataroot><news>") 
%> 
<% 
do while not rs.eof 
Response.Write("<new><title>"&rs("Title")&"</title><shortdesc><![CDATA[123]]></shortdesc><date>"&rs("AddDate")&"</date><link>shownews.asp?ID="&rs("ID")&"</link></new>") 
rs.movenext 
loop 
%> 
<% 
Response.Write("</news></dataroot>") 
rs.close 
conn.close 
set rs=nothing 
%>
相关文章
导航分类
热门文章
关于我们| 联系我们| 免责声明| 网站地图|
CopyRight 2012-2015 www.diandiba.com - 点滴吧 All Rights Reserved
滇ICP备09005765号-2