|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Hi there,
I am a newbie in XML prog. I am working with an xsl doc and I'm trying to do a hyperlink on the results of a query. Results are returned in an xml format. I'm trying to hyperlink the results and send the info into another page with the value of the selected value. The concatenation of the strings doesn't work. Here is the code: <a href="adsJaBs.asp?cn=" & (selected value)> <xsl:value-of select="cn"/> </a> Please help!!! I have tried using the "concat" function. <a href=concat('adsJaBs.asp?cn=','<xsl:value-of-select="cn"/>')> <xsl:value-of select="cn"/> </a> and still no luck.... Last edited by JaBs206 : May 3rd, 2004 at 09:01 AM. |
|
#2
|
||||
|
||||
|
try this:
Code:
<a href="{concat('adsJaBs.asp?cn=',cn)}"> <xsl:value-of select="cn"/> </a>
|
|
#3
|
|||
|
|||
|
Hi there,
Have tried this and doesn't work. But have found another way of doing this without hyperlinking. Thanx a mil. |
|
#4
|
|||
|
|||
|
Try This
<a href="ViewRentDetails.asp?BillID={@BillID}&TypeID={@RentTypeID}">View</a>
|
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > XML Programming > Hyperlink in XSL!!! |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|