Alright I'm trying to get the value back to test if the check box should be checked or not. I know i always get a true or false returned for my value. But having the check box show up checked or not is what i'm trying to get. So here's what i got so if you can help me thanks for your help.
<xsl:attribute name="value">
<xsl:value-of select="Savebox"/>
<xsl:choose>
<xsl:when test="value='true'">
<input type="checkbox" name="Savebox"/>
</xsl:when>
<xsltherwise>
<input type="checkbox" name="Savebox"
checked="checked"/>
</xsltherwise>
</xsl:choose>
</xsl:attribute>
<xsl:attribute name="value">
<xsl:value-of select="Savebox"/>
<xsl:choose>
<xsl:when test="value='true'">
<input type="checkbox" name="Savebox"/>
</xsl:when>
<xsltherwise>
<input type="checkbox" name="Savebox"
checked="checked"/>
</xsltherwise>
</xsl:choose>
</xsl:attribute>