This section briefly explains about how to render Toast
component in your ASP.NET MVC application. You can
refer ASP.NET MVC Getting Started documentation page for introduction part
of the system requirements and configure the common specifications.
@Html.EJS().Toast("element").Title("Matt sent you a friend request").Content("You have a new friend request yet to accept").Render()
<script type="text/javascript">
setTimeout(() => {
var toastObj = document.getElementById('element').ej2_instances[0];
toastObj.target = document.body;
toastObj.show();
}, 1000);
</script>
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}
}
Output be like the below.