XLST Articles

Xslt Transformations and Xslt Intellesense within the .NET IDE

With xml and xslt transformations becoming alarge part of many business applications it would be benificial to havethis functionality in the .NET IDE. Following are the instructions foradding xslt transformations and intellesense to xslt documents to the.NET IDE. This additional functionalityis achieved by implementing a macro written in VB.NET and a schema thatdepicts the hierachical [...]

Read more

XSLT / XML / C#

Hello everyone. In this source code I am going to show howto apply xslt to data coming from a database in xml format. using System;using System.Collections;using System.Data;using System.Data.SqlClient;using System.Xml;using System.Xml.Xsl; public class XsltTransform{ public static void Transform() { SqlConnection nwindConn = new SqlConnection("Data Source=INMUMIS123;database=northwind;uid=sa;pwd=;"); nwindConn.Open(); DataSet custDS = new DataSet("CustomerDataSet"); SqlDataAdapter custDA = new SqlDataAdapter("SELECT [...]

Read more