Sumedh

Greenhorn
+ Follow
since Aug 02, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Sumedh

Chris,
You need to have "GstBk:Address/GstBk:Name" instead of "GstBk:Name".
<xsl:template match="GstBk:Guest">
Name = <xsl:value-of select="GstBk:Address/GstBk:Name" />
</xsl:template>
-Sumedh
>How can I pass a variable into XSL in this case to give a
>different result for the user?
Use 'addParameter' method. This will add a parameter into your XSL stylesheet.
>And if I am able to pass a variable in to XSL, how do I read it
>from XSL?
Define a parameter <xsl aram name="filter"> in your xsl stylesheet.
For more information on the 'addParameter' method: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/xmlsdk30/htm/xmmthaddparameter.asp
For addnl. info. on setting and reading parameters: http://www.xml.com/pub/a/2001/02/07/trxml9.html?page=2
-Sumedh