I have a strange problem with my model passed to the View
Controller
[Authorize] public ActionResult Sth() { return View(\"~/Views/S
It also works if you declare the string as an object:
object str = "abc"; return View(str);
Or:
return View("abc" as object);