:: Simply put some kind of wrapper tag in there - lots of 
:: people use <body> or 
:: <page> or <output>. I hope that fixes it for you.

Magically is worked without this "workaround". I left it
barely within the <xsp:page></xsp:page> stuff.

PROBLEM: It was the stylesheets/perform_html.xsl from the AxKit1.6 dist
which was source of my problems. It simply converted all tags, without
copying the<form> tag. So all my tests resulted in a lot of <input> tags
without <form> (and thats why my submit button press failed).

It wasn't the source-document, which made the problems.

SOLUTION: I added following paragraph to the
stylesheets/perform_html.xsl, and all my tests work now.

<xsl:template match="form">
        <xsl:copy>
                <xsl:copy-of select="@*"/>
                <xsl:apply-templates/>
        </xsl:copy>
</xsl:template>

Thank you a lot,
Murat


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to