私はこのようなものを持っています:
public ActionResult Index(int id)
{
if (UserHasPermission())
{
return View()
}
throw new HttpException(403, "You do not have permission");
}
そして私のweb.configでこれを設定しました:
<customErrors mode="On">
<error statusCode="403" redirect="/Error/403" />
</customErrors>
エラー/403 へのリダイレクトが完了したときに、このメッセージ「権限がありません」を取得する方法を知りたいです。