Applying XSLT to XML on ASP.NET

I follow the tutorial here: http://www.aspfree.com/c/a/XML/Applying-XSLT-to-XML-Using-ASP.NET/2/

The tutorial shows how to convert xml to html via xslt. Unfortunately, one of the first steps is to "Drag the XML control from the toolbar onto the web form." What section of the tools is this and what kind of control do they say?

+3
source share
2 answers

This is in the standard toolbar section.

You can also create it through the original view:

<asp:Xml ID="xmlMyXmlControl" runat="server" DocumentSource="myXml.xml" TransformSource="myXsl.xsl"></asp:Xml>

MSDN: http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.xml.aspx

+2

"Xml" "" Visual Studio.

0

Source: https://habr.com/ru/post/1708905/


All Articles