|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
passing XSL to HTML
I have the following XSL:
V_TO_DTE: <xsl:value-of select = "//V_TO_DTE"/> How would I pass the V_TO_DTE to when I create a link using jsp <a href="Test.jsp?DATE= ???" target="_blank" >Print Test</a> What would I need replace ??? with in order to for ??? to have the value of V_TO_DTE? |
|
#2
|
|||
|
|||
|
Try this in your xsl:
[code]<a href="Test.jsp?DATE={//V_TO_DTE}" target="_blank">Print Test</a>[code] I don't have any way to test that right now so I'm not sure it will work. Another thing to try would be generating the tag using <xsl:element> and <xsl:attribute>. |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > XML Programming > passing XSL to HTML |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|