Re: [xsl] Execute asp page during transformation

Subject: Re: [xsl] Execute asp page during transformation
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 26 Oct 2006 09:53:02 +0100
> <xsl:eval>http://mypage.asp?id=myparameter</xsl:eval>
> 
? But eval is not good to do this.

There is no xsl:eval command in xslt, if you are still using
Microsoft's old language from IE5 then stop! it isn't supported by
anyone anymore not even Microsoft.

You just want select="document('http://mypage.asp?id=myparameter')"
which will return whatever the ASP generates. The XSLt engine doesn't
need to know that the page is generated dynamically by ASP, it's just
retrieves the resource representation for teh specified URI.

David

Current Thread