Applying XSLT to XML on ASP.NET - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T12:00:00Zhttp://stackoverflow.com/feeds/question/898831http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/898831/applying-xslt-to-xml-on-asp-net1Applying XSLT to XML on ASP.NETMedicineMan2009-05-22T16:45:26Z2009-05-22T16:56:57Z
<p>I am following the tutorial here: <a href="http://www.aspfree.com/c/a/XML/Applying-XSLT-to-XML-Using-ASP.NET/2/" rel="nofollow">http://www.aspfree.com/c/a/XML/Applying-XSLT-to-XML-Using-ASP.NET/2/</a></p>
<p>The tutorial shows how one converts xml to html via xslt. Unfortunately, one of the first steps is to "Drag an XML control from toolbox on to the webform". Which section of tools is this and which control are they talking about?</p>
http://stackoverflow.com/questions/898831/applying-xslt-to-xml-on-asp-net/898879#8988791Answer by Nathan Koop for Applying XSLT to XML on ASP.NETNathan Koop2009-05-22T16:56:57Z2009-05-22T16:56:57Z<p>It's in the standard section of the toolbox.</p>
<p>You can create it via source view as well:</p>
<pre><code><asp:Xml ID="xmlMyXmlControl" runat="server" DocumentSource="myXml.xml" TransformSource="myXsl.xsl"></asp:Xml>
</code></pre>
<p>Additional information on this control can be found at the MSDN site: <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.xml.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.xml.aspx</a></p>