在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
<%@ codepage="65001" %> <!-- #INCLUDE FILE="ADOVBS.INC" --> <% Response.ContentType = "text/xml" ' 如果不在 adovbs.inc 里,则设置一个常量. Set Con = Server.CreateObject( "ADODB.Connection" ) Con.Open "Provider=sqloledb;UID=sa;DATABASE=Pubs" ' 建立数据库连接,如到SQL. Set RS = Server.CreateObject( "ADODB.Recordset" ) ' 建立并打开Recordset. RS.ActiveConnection = Con RS.CursorType = adOpenStatic RS.Open "select * from titles" Response.Write "<?xml version='1.0' encoding='ISO-8859-1'?>" & vbCRLF ' 发送给Response对象. RS.Save Response, adPersistXML %> [1] |
请发表评论