[xsl] Re: XSL-List Digest V3 #731

Subject: [xsl] Re: XSL-List Digest V3 #731
From: Carlton Noles <nolesce@xxxxxxxxx>
Date: Fri, 4 May 2001 16:25:42 -0700 (PDT)
I solved the other problem with some javascript as
follows...

<script language="javascript">
// Load XML 
var xml = new ActiveXObject("Microsoft.XMLDOM")
xml.async = false
xml.load("Contactlist.xml")

// Load the XSL
var xsl = new ActiveXObject("Microsoft.XMLDOM")
xsl.async = false
xsl.load("addhead.xsl")

// Transform
document.write(xml.transformNode(xsl))
</script>

now i am having another problem...
processing via the above script i want to pass a value
to the xsl to use in an xsl:choose statement.
when i try this ...

<xsl:choose>
        <xsl:when
match=".[LName=request.querystring(name)]">

I get an unknown method error. Is there a way to pass
a value through and us it in such a manner?

regards 
carlton noles



__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread