F
Felipe Garcia
how can i use asp.net web server controls with xslt ?
the problem is that we have an solution that was built with asp + xslt, and
we need to convert the solution to asp.net therefore all of the controls
used inside the application will need to be converted to asp.net web server
controls.
thanks
ie:
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<form id="Form1" method="post" runat="server">
<asp:TextBox id="TextBox1" style="Z-INDEX: 101; LEFT: 593px; POSITION:
absolute; TOP: 166px" runat="server"></asp:TextBox>
</form>
</xsl:template>
</xsl:stylesheet>
the problem is that we have an solution that was built with asp + xslt, and
we need to convert the solution to asp.net therefore all of the controls
used inside the application will need to be converted to asp.net web server
controls.
thanks
ie:
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<form id="Form1" method="post" runat="server">
<asp:TextBox id="TextBox1" style="Z-INDEX: 101; LEFT: 593px; POSITION:
absolute; TOP: 166px" runat="server"></asp:TextBox>
</form>
</xsl:template>
</xsl:stylesheet>