The view is supposed to control the model that is passed by the controller. Query string parameters are already present when the request was made for the corresponding action. So, to view the view model:
var model = new MyViewModel
{
SomeParam = "Some value"
}
return View(model);
, , .
, , , , :
return RedirectToAction("SomeOtherActionName", new { ParamName = "ParamValue" });