How do i access querystring value in XSLT style sheet.
Say For Example:
my url is : http://localhost:54279/SearchResults.aspx?trip=on&ad=1&ch=0&in=0
...
then how to get value of 1 from "ad"
I tried
<xsl:param name="ad" select="ad" />
<xsl:value-of select ="$ad"/>
But none of them worked..Any help please..