Subject: RE: dynamic form attributes and xsl
From: "d. cheng" <sunnydsc@xxxxxxxxx>
Date: Tue, 24 Apr 2001 15:38:42 -0700 (PDT)
|
Hi -
I tried it and it didn't work, it actually processes
it as :<FORM ACTION="" METHOD="POST" NAME="{.}"> when
I view source on the html it generates
I don't necessarily need to create a template
either...
I guess essentially what I'd like to generate is:
<FORM ACTION="" METHOD="POST" NAME="{.}">
html tables, etc
</FORM>
Maybe I'm just not doing it right, please let me know.
Thanks!
--- Michael Kay <mhkay@xxxxxxxxxxxx> wrote:
> > I'm relatively new to XSL and am having a hard
> time
> > figuring this out.
> >
> > <FORM ACTION="" METHOD="POST" NAME=<xsl:value-of
> > select="." />>
> >
> Use:
> <FORM ACTION="" METHOD="POST" NAME="{.}"/>
>
> It's called an attribute value template.
>
> Mike Kay
> Software AG
>
> XSL-List info and archive:
> http://www.mulberrytech.com/xsl/xsl-list
>
__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|