Hi..i am new with xml and xsl.
I have the input xml as:
<?xml version="1.0" ?>
<Employee>
<EmployeeDetails EmployeeName="JohnnyWalker" EmployeeId="12345" CompanyName="ABC Inc." CompanyAddress="Bangalore" ContactNo="0000000" />
</Employee>
--------------------------------------------
I want the output xml as:
<Employee>
<EmployeeDetails JohnnyWalker="12345" CompanyName="ABC Inc." CompanyAddress="Bangalore" ContactNo="0000000" />
</Employee>
i need to do this using xsl.....can anybody please help??