RedirectToAction is not redirecting

左心房为你撑大大i 提交于 2019-12-20 04:16:06

问题


Shouldn't this work?

If I had a break point on the last } it stops there but it never gets to the Contact Action, and the page after being posted it's just a blank page with no source code

what am I missing?

Thank you.


回答1:


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

public ActionResult Contact(ContactModel model)
{
    //.... some code

    return RedirectToAction("Contact");
}


来源:https://stackoverflow.com/questions/4137775/redirecttoaction-is-not-redirecting

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!