I have been receiving one file like this
<?xml version="1.0" encoding="utf-8"?>
<StudentDocument xmlns:sdtc="urn:sl7-org:sd
tc" xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance" xmlns:hvhs="urn:hvhs:stude
nt-extensi
ons" xmlns="urn:student-org:v3"
>
<recordTarget>
<StudentRole>
<id root="22" extension="65478" />
<id root="23" extension="777-22-333" />
<id root="24" extension="33333333" />
<addr use="RT">
<streetAddressLine>Address
1</streetA
ddressLine
>
<city>City</city>
<state>ST</state>
<postalCode>55555</postalC
ode>
<country>XT</country>
</addr>
<telecom use="TE" value="tel:+17248468200" />
<Student>
<name>
<family>john</family>
<given>katey</given>
</name>
</Student>
</StudentRoleRole>
</recordTarget>
</StudentDocument>
I want to generate formatted XML like the below by using XSLT. How do i write it in visual studio 2013?
<StudentResultData>
<ROLLNUMBER>777-22-333</RO
LLNUMBER>
<Phone>7248468200</Phone>
<firstname>John</firstname
>
<lastname>katey</lastname>
<address1>Address1</addres
s1>
<city>City<city>
<zip>55555</zip>
<state>ST</state>
<country>XT</country>
</StudentResultData>
Create your XSLT script in the new opened window.
To test the XSLT transformation, go to the XML manu, choose "Start XSLT debugging" or press Alt+F5