我在 Visual Studio 2010 中创建了一个 MVC4 Web 项目。我在 AccountController.cs 文件中有以下方法的断点:
[AllowAnonymous]
public ActionResult Login()
[AllowAnonymous]
[HttpPost]
public JsonResult JsonLogin(LoginModel model, string returnUrl)
[AllowAnonymous]
[HttpPost]
public ActionResult Login(LoginModel model, string returnUrl)
单击登录按钮时,第一次点击后,这些都不会被点击。有任何想法吗?