seems to be a standard XSLT error in your logicsheet:
<xsl:template match="xsp:page">
<xsl:copy>
<xsp-request:get-parameter name="user.name" default="r" as="string"/>
<xsl:apply-templates select="@*"/>
You can't add attributes to an element that already has a child node. So simply change the two above lines and it maybe works.
Joerg
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
