Applying XSLT to XML on ASP.NET - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T12:00:00Z http://stackoverflow.com/feeds/question/898831 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/898831/applying-xslt-to-xml-on-asp-net 1 Applying XSLT to XML on ASP.NET MedicineMan 2009-05-22T16:45:26Z 2009-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#898879 1 Answer by Nathan Koop for Applying XSLT to XML on ASP.NET Nathan Koop 2009-05-22T16:56:57Z 2009-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>&lt;asp:Xml ID="xmlMyXmlControl" runat="server" DocumentSource="myXml.xml" TransformSource="myXsl.xsl"&gt;&lt;/asp:Xml&gt; </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>