MVC 3 Can't pass string as a View's model?

后端 未结 7 1554
忘了有多久
忘了有多久 2021-02-03 16:46

I have a strange problem with my model passed to the View

Controller

[Authorize]
public ActionResult Sth()
{
    return View(\"~/Views/S         


        
7条回答
  •  孤街浪徒
    2021-02-03 17:28

    It also works if you declare the string as an object:

    object str = "abc";
    return View(str);
    

    Or:

    return View("abc" as object);
    

提交回复
热议问题