are.ehibou.com

March 28, 2006

Xslt Transformer Windows Application (C# .NET)

Filed under: C#.NET — admin @ 2:47 pm

XslTransformerThis application is a very easy to use and a very small tool. It is used to transform XML file useing the given XSL file.

Application uses System.Xml, System.Xml.Xslt namespaces and their classes to perform this action.

Application requires Microsoft .NET framework to run.

Please report any bug’s or suggestions related to this easy application.

The C#.NET source code is:

try
{
if ((outputF.ShowDialog()==DialogResult.OK)&&(outputF.FileName!=null)&&(outputF.FileName.Length>0))
{
XslTransform xslt=new XslTransform();
xslt.Load(label2.Text);
xslt.Transform(label1.Text,outputF.FileName);
label3.Text="Complete ...";
}
else
{
label3.Text="No transformation done ...";
}
}
catch(Exception Ex)
{
label3.Text="No transformation done ...";
MessageBox.Show(Ex.ToString());
}

http://are.ehibou.com/wp-content/plugins/downloads-manager/img/icons/default.gif download: XsltTransformer.zip (194.40KB)
added: 30/07/2010
clicks: 0
description: Xslt Transformer binary

http://are.ehibou.com/wp-content/plugins/downloads-manager/img/icons/default.gif download: XsltTransformerSrc.zip (31.82KB)
added: 30/07/2010
clicks: 0
description: Xslt Transformer source

  • Share/Bookmark

No Comments »

No comments yet.

RSS feed for comments on this post. TrackBack URL

Leave a comment

Powered by WordPress