xsl-list
[Top] [All Lists]

RSS problems

2004-10-27 05:43:57
hello guys

im doing site where the user clicks on an link and the page get the rss feed
from another website passes it through an xsl file and outputs it.

On one server it works,

On another it doesn't?


Any of you guys ever encouter it or heard about it,

Regards
Luke

the code is

Set objXML = Server.CreateObject("MSXML2.FreeThreadedDOMDocument")
objXML.async = False

objXML.setProperty "ServerHTTPRequest", True
strTemp = request.QueryString("t")
objXML.Load(strTemp)

Set objXSL = Server.CreateObject("Microsoft.XMLDOM")
objXSL.async = False
objXSL.load(Server.MapPath("bovslrss.xsl"))

strHTML = objXML.transformNode(objXSL)

response.Write(strHTML)



<Prev in Thread] Current Thread [Next in Thread>