Partner links

Xslt Transformer Windows Application (C# .NET)




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://cdn.are.ehibou.com/wp-content/plugins/downloads-manager/img/icons/default.gif download: XsltTransformer.zip (194.40KB)
added: 30/07/2010
clicks: 180
description: Xslt Transformer binary

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

Leave a Reply

  

  

  

You can use these HTML tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>