Most efficient way to transform XSL to DataSet?

What is the most efficient way (code example) to transform XSL to DataSet in .NET 2.0?

+2


source to share


2 answers


This has worked very well for me in the past:



http://www.tkachenko.com/blog/archives/000246.html

+1


source


The best way to do this is to store the DataSet in XML, then you have a simple XML document in which you can run XSL.



I use this all the time for Excel export

0


source







All Articles