Use toastr
Install-Package CHC.ToastrNotify
<!--toastr-->
<link href="~/plugins/toastr.js/toastr.min.css" rel="stylesheet" />
<!-- jQuery -->
<script src="~/plugins/jquery/jquery.min.js"></script>
<!--toastr.js-->
<script src="~/plugins/toastr.js/toastr.min.js"></script>
<!--toastr set-->
<script src="~/plugins/toastr.js/app.js"></script>
@Html.Notify()
[HttpGet]
public ActionResult Index(string returnUrl)
{
CHC.ToastrNotify.NotifyHelper.Append(CHC.ToastrNotify.NotifyType.Info, "Message","Title");
return View();
}