Posted By:
abuhamza_Z
Posted On:
Saturday, March 22, 2003 01:13 PM
I want to use xsl:param in my xslt file and pass parameter at run time , I apply that xslt through java script Here the example //Define xsl object XSLDocument3 = new ActiveXObject('MSXML2.DOMDocument.3.0'); XSLDocument3.validateOnParse = true ; XSLDocument3.load('BillSummaryView.xsl'); if (XSLDocument3.parseError.errorCode != 0){ HTMLtarget.innerHTML = "ERROR!" } //Apply xslt on my xml file HTMLtarget.innerHTML = XMLDocument.transformNode(XSLDocument3); I would like to know how can I pass ? Abh
More>>
I want to use xsl:param in my xslt file and pass parameter at run time , I apply that xslt through java script
Here the example
//Define xsl object
XSLDocument3 = new ActiveXObject('MSXML2.DOMDocument.3.0');
XSLDocument3.validateOnParse = true ;
XSLDocument3.load('BillSummaryView.xsl');
if (XSLDocument3.parseError.errorCode != 0){
HTMLtarget.innerHTML = "ERROR!"
}
//Apply xslt on my xml file
HTMLtarget.innerHTML = XMLDocument.transformNode(XSLDocument3);
I would like to know how can I pass
?
Abh