xsl-list
[Top] [All Lists]

Re: [xsl] Execute asp page during transformation

2006-10-26 01:53:31

<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

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--