How can I add parametr to link in MVC? When I use this (in controller) below code
Model model = GetModel();
string lang = "pl";
string viewName = "MyPage";
return View(viewName + "?lang=" + lang, model);
I get error The view 'MyPage?lang=pl' or its master was not found or no view engine supports the searched locations. The following locations were searched: ...