Skip to content

Tag Archives: ajoy

please please convert the following XML to another XML with XSLT:?

This is the xml: <Account> <Id>1</Id> <FirstName>Ajoy</FirstName> <LastName>Chakraborty</LastName> </Account> convert the above xml to the xml below(with the help of XSLT): <Customer> <CustomerId>1</CustomerId> <Name>Ajoy Chakraborty</Name> </Customer>

How to convert an this xml document to another xml using XSLT:?

This is the xml: <Account> <Id>1</Id> <FirstName>Ajoy</FirstName> <LastName>Chakraborty</LastName> </Account> I want to convert the above xml to the xml below(with the help of XSLT: <Customer> <CustomerId>1</CustomerId> <Name>Ajoy Chakraborty</Name> </Customer>