开发者

RedirectToAction is not redirecting

Shouldn't this work?

RedirectToAction is not redirecting

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 开发者_如何学Pythonpage with no source code

what am I missing?

Thank you.


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

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

    return RedirectToAction("Contact");
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜