Click here to Skip to main content
15,881,757 members
Articles / Desktop Programming / ATL

Using XSLT to Render XML Data Returned by a COM Object

Rate me:
Please Sign up or sign in to vote.
4.50/5 (4 votes)
12 Sep 20016 min read 137.8K   885   32  
This is a 3-tier application. A COM component returns SQL data in XML format, then using XSLT to transform to HTML at client side. By using XML, all the data can be sort, split into pages locally, that will give users a quick response!
<% 
Option Explicit

dim comObj
dim strXML

set comObj = createobject("xmlrs.xmlrsobj")

'Modify the connection String to fit your environment
comobj.ConnectDB "Provider=sqloledb;Data Source=MyServer;" & _
        "Initial Catalog=pubs;User Id=sa;Password=YourPassword;"

strXML = comObj.GetXmlrs

Response.ContentType = "text/xml"
response.write "<?xml version=""1.0""?>"
response.write "<?xml-stylesheet type=""text/xsl"" href=""xml.xsl""?>"
response.write strXML

comObj.CloseDB
%>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.


Written By
Web Developer
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions