Subject: RE: Creating WML anchors using XSL
From: Ben Robb <Ben@xxxxxxxxxx>
Date: Mon, 14 Aug 2000 15:49:51 +0100
|
> What I have been trying to create is an anchor that will post
> the filename
> to an asp file that parses the specific. So in effect this
> would be a link
> with target: articles.asp?filename=article1.xml
Just use a attribute value template:
<a href="articles.asp?filename={@filename}">
<xsl:value-of select="title"/>
</a>
Ben
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|