I am using asp.net control in XSLT but it is not working. Sample code is here
<xsl:element name="asp:TextBox">
<xsl:attribute name="ID">
<xsl:value-of select="txtID"/>
</xsl:attribute>
<xsl:attribute name="runat">
<xsl:value-of select="server"/>
</xsl:attribute>
<xsl:attribute name="AutoPostBack">
<xsl:value-of select="true"/>
</xsl:attribute>
<xsl:attribute name="OnTextChanged">
<xsl:value-of select="txtItem_TextChanged"/>
</xsl:attribute>
</xsl:element>