3

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

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?

2 Answers 2

2

It's in the standard section of the toolbox.

You can create it via source view as well:

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

Additional information on this control can be found at the MSDN site: http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.xml.aspx

Sign up to request clarification or add additional context in comments.

Comments

0

It's called "Xml" in the "Standard" menu in Visual Studio.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.