I have xml like this, this is just a small example
Code:
<classdetail>
<Semester>Fall</Semester>
<Semester>spring</Semester>
<Semester>summer</Semester>
</classdetail>
And I want to sort it with XSLT so that it is output Spring followed by Summer then Fall.
how would I perform this?
Regards