balexandre
balexandre

Reputation: 75073

RedirectToAction is not redirecting

Shouldn't this work?

alt text

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.

Upvotes: 1

Views: 986

Answers (1)

Arief
Arief

Reputation: 6085

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

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

    return RedirectToAction("Contact");
}

Upvotes: 4

Related Questions