asp.net web server controls + xslt

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>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top