RedirectToAction is not redirecting

后端 未结 1 1171
遥遥无期
遥遥无期 2021-01-25 10:37

Shouldn\'t this work?

\"alt

If I had a break point on the last } it stops there but it

1条回答
  •  后悔当初
    2021-01-25 11:12

    Your Contact(ContactModel model) should not be "void", instead it should be

    public ActionResult Contact(ContactModel model)
    {
        //.... some code
    
        return RedirectToAction("Contact");
    }
    

    0 讨论(0)
提交回复
热议问题