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

后端 未结 7 1565
忘了有多久
忘了有多久 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:14

    If you use named parameters you can skip the need to give the first parameter altogether

    return View(model:"abc");
    

    or

    return View(viewName:"~/Views/Sth/Sth.cshtml", model:"abc");
    

    will also serve the purpose.

提交回复
热议问题