<?xml version="1.0" encoding="utf-8"?>
<!--#include file="conn.asp"-->
<%
session.codepage = 65001
%>
<root>
<%
sql="select * from introduce where IntroducePic is not null"
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,1
do while not rs.eof
%>
<picture>
<num><%=rs("IntroduceID")%></num>
<picpath><%=rs("IntroducePic")%></picpath>
</picture>
<%
rs.movenext
loop
rs.close
set rs=nothing
%>
</root>