Does anyone have a nice way of getting the url of the current page in the controller?
More specifically I need a specific query parameter.
My action looks like this; do I need to put in an argument?
public ActionResult Random()
{
RandomMovieViewmodel rmvm = new RandomMovieViewmodel();
return View(rmvm);
}