VisualStudio2010でMVC4Webプロジェクトを作成しました。AccountController.csファイルに次のメソッドのブレークポイントがあります。
[AllowAnonymous]
public ActionResult Login()
[AllowAnonymous]
[HttpPost]
public JsonResult JsonLogin(LoginModel model, string returnUrl)
[AllowAnonymous]
[HttpPost]
public ActionResult Login(LoginModel model, string returnUrl)
ログインボタンをクリックしたときに最初にヒットした後、これらのいずれもヒットしません。何か案は?