xsl-list
[Top] [All Lists]

[xsl] "form.submit" not working

2009-02-24 06:30:55
This is "abc.xsl".one.cgi not getting called here.what can be the problem?
XML file is proper.other than submit,all else works well in xsl file.


<xsl:stylesheet version="1.0"
               xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

<xsl:output method="html"/>

<xsl:template match="tracks">
   <table border="1">
       <tr>
           <td> Parameter </td>
           <td> Description </td>
           <td> Value </td>
       </tr>
       <xsl:apply-templates/>
   </table>
</xsl:template>

<xsl:template match="one">
   <form name="form1" method="POST" action="one.cgi">
   <tr>
       <td>
           <xsl:value-of select="label"/>
       </td>
       <td>
           <xsl:value-of select="desc"/>
       </td>
       <td>
            <xsl:if test="label = 'Name'">
            <input type="text" name="Name" value="">
            </input>
            </xsl:if>
       </td>
   </tr>
   </form>
   <script>
       document.form1.submit();
   </script>
</xsl:template>

</xsl:stylesheet>


----------------------------
Regards,
Himanshu Padmanabhi

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>