ASP.NET MVC has a handy HtmlHelper extension called ValidationSummary, for when something goes wrong. It’s used like this:
@Html.ValidationSummary(true, "Problem. Please correct the errors and try again.")
Is there something in the framework to provide feedback to the user when stuff has gone right? E.g. like “Account Created” or something like that.
You can use ViewBag folowing way:
And in view: