or
[HttpPost][ValidateAntiForgeryToken]public ActionResult LogOff()return RedirectToAction("Index", "Home");}@(Html.Kendo().Menu() .Name("menu") .Items(items => { items.Add().Text("Home").Action("Index", "Home"); //... items.Add().Text(User.Identity.Name) .Items(children => { //... // this results in a 404 error children.Add().Text("Sign out").Action("LogOff", "Account"); }); }))<text> Hello, @Html.ActionLink(User.Identity.Name, "Manage", "Account", routeValues: null, htmlAttributes: new { @class = "username", title = "Manage" })! @using (Html.BeginForm("LogOff", "Account", FormMethod.Post, new { id = "logoutForm" })) { @Html.AntiForgeryToken() <a href="javascript:document.getElementById('logoutForm').submit()">Sign out</a> }</text><input data-val="true" data-val-date="The field FechaInicio must be a date." data-val-required="El campo FechaInicio es obligatorio." id="FechaInicio" name="FechaInicio" type="date" value="2013-07-20T15:00:00.000Z" /><input data-val="true" data-val-date="The field FechaInicio must be a date." data-val-required="El campo FechaInicio es obligatorio." id="FechaInicio" name="FechaInicio" type="date" value="15/07/2013" />date.toISOString()Html.Kendo().MultiSelect().HtmlAttributes(new { spellcheck = "false" }) ...