kalu singh rao

kalu singh rao

  • 288
  • 6.4k
  • 108.9k

How to add manually value to their attibutes in XSLT

Jul 6 2016 4:32 AM
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> 

Answers (1)