Hi All,
I want to Pass parameter from one XSLT1 to XSLT2 and use those parameter in XSLT2.
What i want to do is i am generating Html file using XSLT1 then in html generating some hyperlink for another XSLT.
so when user click on that link it execute XSLT2 and create another HTMl page based on the parameter passed from XSLT1.
Below is the code for generating hyper link In XSLT:
Code:
<a
href="UserDetail.xsl?UserID={$userID}&loction={$location}">
<xsl:value-of select="UserID"/>
</a>
How can i do that ? can you please shed some light on it.
Thanks
Hari