XSLT - how to use it

D

Dan Aldean

Hello,

I would like to convert an XML document to HTML.

1. Can I build with the design tools the xslt document, or I have to write
code?
2. Does anybody have a small sample of C# of how to do the transformation?
Also the xml and xsl attached?

Thanks
 
M

Martin Honnen

Dan Aldean wrote:

I would like to convert an XML document to HTML.

1. Can I build with the design tools the xslt document, or I have to write
code?

There are generic stylesheets that for instance render the XML tree as
an HTML document with script but usually you have to write a custom XSLT
stylesheet for your XML documents.
2. Does anybody have a small sample of C# of how to do the transformation?

..NET 1.x:
<http://samples.gotdotnet.com/quickstart/howto//doc/Xml/TransformXml.aspx>

..NET 2.0:
<http://www.asp.net/quickstart/howto/doc/Xml/TransformXml_Retail.aspx>
 
T

Tasos Vogiatzoglou

1. I don't know if you can with the design tools

2. This code snippet is all required. Unfortunately, I cannot post the
xml/xslt pair :)

_document is an XMLDocument

XslTransform transform1 = new XslTransform();
transform1.Load(this.XsltPath);
TextWriter writer1 = new StreamWriter(strOutputPath, false,
Encoding.UTF8);
transform1.Transform(this._document.CreateNavigator(), null, writer1);
writer1.Flush();
writer1.Close();


Regards,
Tasos
 
K

Kevin Spencer

1. I don't know if you can with the design tools

In Visual Studio 2005, yes, you can. The XSL Editor is excellent!

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

The man who questions opinions is wise.
The man who quarrels with facts is a fool.
 
D

Dan Aldean

Thank you all.

I previously tried a few of the samples I found on the web, but all had
problems and did not even compile. Nor that I knew how to fix them.

Regards,
Dan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

How do I transform this xml file into html by using this xslt document 9
xslt and .net 1
xslt 2
printing xml file 2
XSLT query 2
XSLT to EMF 10
Weird XSLT messages 1
.xsl or .xslt? 2

Top