以下一個Actionspa
1 [Authorize] 2 [F1]//自定義過濾器,繼承自ActionFilter 3 public ActionResult Index() 4 { 5 return View(); 6 }
若是受權未經過,即用戶沒有登陸,那麼F1則永遠不會被執行。code