.net - Why are xml transformations needed? -
What is the basic need of XML changes? In which situation can we use it? Can we use it in the net?
Suppose you get many different product lists, each in a different XML format.
You also internally use another XML format.
The simplest thing to do is to convert different XML formats on their own. You can use XSLT for that.
The .NET framework has extensive support from XSL conversions - see namespace.
Comments
Post a Comment