Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

xml, http request and xsl stylesheets

Status
Not open for further replies.

amiw

Programmer
Apr 1, 2003
113
GB
if i retrieve an xml file using the http request object...
with code something like

Set xmlHttp = CreateObject("Microsoft.XMLHTTP")
xmlHttp.open("GET", " false)
xmlHttp.send()
xmlDoc=xmlHttp.responseText

how would i include an xsl stylesheet with this page?

thanks
Michael.
 
>> include an xsl stylesheet

What do you mean "include"? You want it in the XML file? It would have to be sent from the Server that way.

-pete
 
yeah thats what i would have thought, the company that is providing the feed are trying to provide me the stylesheet for me to incorporate into the xml page that i get from their server using the http request object.
 
amiw, your not using any XML terminology that i am familiar with. "incorporate into the xml page", i have no idea what that means.

Typically you use a XSL file to transform the XML into some other data format like HTML. That is fundamental XLM 101 knowledge. If that is what you need then you should start reading about XML and XSLT using some online tutorials or book or something. If you need something else, i still don't understand what it is.


-pete
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top