vote up 1 vote down star
1

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?

flag

1 Answer

vote up 1 vote down check

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.