Skip to content

Instantly share code, notes, and snippets.

@13orno
13orno / ExampleController.cs
Last active December 4, 2018 17:26 — forked from thomkaufmann/ExampleController.cs
ASP.NET MVC Flash Messages (Razor)
// Usage within MVC Controller
[HttpPost]
public ActionResult Create()
{
return RedirectToAction("DashBoard", "agent").Danger("Danger message.").Success("this is a success").Warning("it's a warning");
}