ctp5

What is the replacement of Controller.ReadFromRequest in ASP.NET MVC?

I am attempting to update a project from ASP.NET MVC Preview 3 to Preview 5 and it seems that Controller.ReadFromRequest(string key) has been removed from the Controller class. Does anyone know of any alternatives to retrieving information based on an identifier from a form? ...

Parsing XML contained in a string using an XSL via JQuery

This is my XML: var x="<page><item>1</item></page>"; My XML is stored in a JavaScript string. I am trying to make some changes to this XML using XSL. I want to apply this XSL to this XML via JavaScript. So I have used JQuery: $('#output').xslt({xmlURL: '??',xslUrl: 'Test.xsl'}); Here the xmlURL is an XML file, but the input is a s...