Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 8th, 2007, 08:07 AM
Authorized User
 
Join Date: Jun 2003
Posts: 59
Thanks: 0
Thanked 0 Times in 0 Posts
Default XML value in HRef link

Hi

Here is my link code

 <a href="javascript:newWindow('/Go.asp?id=4&amp;FY=2007')" title="View Enquiry"><xsl:value-of select="@Name"/></a>

What I'm trying to do is use <xsl:value-of select="@ID"/> as the FY in the above link.

Any Ideas would be great.

Andy

 
Old January 8th, 2007, 08:35 AM
joefawcett's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 3,074
Thanks: 1
Thanked 38 Times in 37 Posts
Default

Look at attribute value templates:
Code:
<a href="javascript:newWindow('/Go.asp?id=4&amp;FY={@ID}')" title="View Enquiry"><xsl:value-of select="@Name"/></a>
--

Joe (Microsoft MVP - XML)
 
Old January 8th, 2007, 08:43 AM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

Just use

<a href="javascript:newWindow('/Go.asp?id=4&amp;FY={@ID}')" ...

Michael Kay
http://www.saxonica.com/
Author, XSLT Programmer's Reference and XPath 2.0 Programmer's Reference
 
Old January 8th, 2007, 08:52 AM
Authorized User
 
Join Date: Jun 2003
Posts: 59
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thanks Guys

Joe reading up on AVT now.

Andy






Similar Threads
Thread Thread Starter Forum Replies Last Post
Saving XML thru href link using XSLT kaukabhishek XSLT 16 June 25th, 2008 07:16 PM
xml href from sql server toddw607 SQL Server 2000 9 May 14th, 2007 06:24 AM
setting combox box value to href in <link> bhairraju CSS Cascading Style Sheets 2 March 23rd, 2007 01:58 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.