I am currently working on a small side-project in MVC3. The goal is to make a personalized schedule (school). When users login, they should be able to review their schedule.
The XML with data is already delivered by an other programmer. A sample XML is found here http://hrooster.leonmastenbroek.nl/student-current.xml
I've managed to deserialize the XML to an object by creating a class with the "xsd.exe" tool. But honestly I don't know if that is useful :)
Now comes the question: How do you parse a XML file/object with a stylesheet (XSLT) into a Razor template? As you can see there are a lot of attributes in the timetable node so there are a lot of references. I made a stylesheet to arrange the data properly, but I don't have a clue how to combine it together.
Also it should be nested in a jQuery Mobile content div. And the XML is delivered by URL to me.