This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: XSL-List Digest V3 #731


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]