What patterns are people using to display status messages and error messages to users in Asp.Net MVC?
I currently use ModelState.AddModelError for problems with adding / editing / updating objects but what about after that? Say a status message's to let them know their action ran correctly?
Was thinking about using TempData since alot of times a re-direct is involved.
Anyone have a good pattern they are using that works well?