ASP.NET MVC - ValidateAntiForgeryToken expiring
In a web page we provide a hyperlink (GET) that the User may click on to authenticate: @Html.ActionLink("Please Login", "MyMethod", "MyController") This maps to the following controller method which returns a View: [RequireHttps] public ActionResult MyMethod() { return this.View(new MyModel()); } This View contains the Form in which the User supplies their credentials; the Form contains the required AntiForgeryToken. When the User submits the form, the following Controller method is called: [HttpPost] [RequireHttps] [ValidateAntiForgeryToken] public ActionResult MyMethod(MyModel model) { // my