Re: Problem in passing http request parameters

2003-12-19 Thread Christian Haul
Ashish Kumar wrote: 2) I have to pass second parameter from a simple query, where I m using the line: xsl:attribute name=HREFc_code=xsl:value-of Please remember that starts an entity in XML. Exactly for this reason there is an entity representing : amp; Hence the above code will complain about an

Re: Problem in passing http request parameters

2003-12-19 Thread Lionel Crine
With a variable you can write : option value=new.xls?dis={$var1} instead of option value=new.xls?dis=$var1 But if you need to pass a node the other method (xsl:value-of) is the one. Lionel At 08:27 19/12/2003 +0100, you wrote: Ashish Kumar wrote: 2) I have to pass second parameter from a

Re: Problem in passing http request parameters

2003-12-18 Thread Gernot Koller
Hi! Try this code: xsl:variable name=var1 select=sql:id/ option xsl:attribute name=value xsl:textnew.xls?dis=/xsl:text xsl:value-of select=$var1/ /xsl:attribute xsl:value-of select=sql:name/ /option hope that

Re: Problem in passing http request parameters

2003-12-18 Thread Ashish Kumar
HI there, Thanx, it worked, but I m still hanging with the second problem, i.e. how to pass more than one parameter. Any help Plz REGARDS. ASHISH On Thu, 18 Dec 2003, Gernot Koller wrote: Hi! Try this code: xsl:variable name=var1 select=sql:id/ option