i have xslt containing some hyperlinks. i need to add some variables to url's as querystring. those variables will come from labels on the page.
ok how can i retrieve those values from textboxes using javascript in xslt. i found some links but couldnt achieve. browser is not running javascript in xslt. something like that.
for example i will use the adres variable somewhere in xslt.
ok how can i retrieve those values from textboxes using javascript in xslt. i found some links but couldnt achieve. browser is not running javascript in xslt. something like that.
Code:
<xsl:variable name="adres">
<script type="text/javascript" language="Javascript">
<![CDATA[
var adres;
adres=3;
]]>
</script>
</xsl:variable>