Install
PM> Install-Package Flash.Mvc5
Use
MyController.cs
public ActionResult Index()
{
Request.Flash("success", "it worked!");
return View();
}_Layout.cshtml
@foreach (var flash in Request.GetFlashMessages())
{
<div>@flash.Type @flash.Message</div>
}