Re: [xsl] Bringing XML values into an XSL multi line text box

Subject: Re: [xsl] Bringing XML values into an XSL multi line text box
From: cutlass <cutlass@xxxxxxxxxxx>
Date: Fri, 09 Mar 2001 13:55:28 +0000

Keddy, Paul wrote:


This may be more of an html question? and probably a very simple one, but I
was wondering:

I currently am bringing in values correctly from XML to XSL.  This displays
fine but I would like the number value to be put into an input text box, and
the severity into a multi line text box.  Any quick solutions?

this is how u would do input


<input name="number">
<xsl:attribute name="value"><xsl:value-of select="error/number"/></xsl:attribute>
</input>

this is how u would do textarea.
		
<textarea name="severity">
<xsl:value-of select="error/severity"/>
</textarea>

this is relatively simple stuff, i would recc getting a book or reading faq file ( http://www.dpawson.co.uk ).

cheers,jim fuller


XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list



Current Thread