I was wondering how I can access the GET parameter in url's like ?returnTo=url
I'm using MVC3 with C# and would like to get the value in a Controller. I've snooped around in the Request object, which has the values I need in the "Query" property.
Do I have to parse that QueryString manually or is there an easier way?