@model TripleAdd.Models.TripleAddViewModel
@{
ViewBag.Title = "Triple Add";
}
@using (Ajax.BeginForm((string)ViewBag.Method, "Home", new AjaxOptions()
{
HttpMethod = "POST",
InsertionMode = InsertionMode.Replace,
OnSuccess = "Reload(data)",
OnFailure = "DisplayError(data)"
}))
{
}
@section scripts {
}