This 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());
}
|
|
download: XsltTransformer.zip (194.40KB) added: 30/07/2010 clicks: 180 description: Xslt Transformer binary |
|
|
download: XsltTransformerSrc.zip (31.82KB) added: 30/07/2010 clicks: 119 description: Xslt Transformer source |
