[xsl] Handling forms in xsl

Subject: [xsl] Handling forms in xsl
From: Brian Hickey <brian_hickey1@xxxxxxxxx>
Date: Thu, 22 Aug 2002 10:57:44 -0700 (PDT)
Hello all

I want to include a form in my xsl code, and to take
the value of the chosen item and store it's value in a
variable 'result'

<xsl:variable name="result"> 
     <xsl:value-of select="$chInput"/> 
</xsl:variable>

<form action="{$baseActionURL}" method="post">
   
<input type="radio" name="chInput" value="EE6421"/> 
<xsl:value-of select="core1"/><br/>

<input type="radio" name="chInput" value="EE6422"/>
<xsl:value-of select="core2"/><br/>

<input type="submit" value="View Module"
class="uportal-button"/><br/>

</form>   
  
<xsl:value-of select="$result"/>

I have tried declaring the variable within the input
tag but this dosen't work either. Any suggestions...

Brian

__________________________________________________
Do You Yahoo!?
HotJobs - Search Thousands of New Jobs
http://www.hotjobs.com

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


Current Thread