0
ASP MVCのビュー側からカスタム属性に値を渡そうとしています。 >Asp.net MVCでカスタム属性のパラメータを動的に渡す方法
- フィル従業員の詳細
- 保存ボタンをクリックが
- Passwordウィンドウが
- 私は(ここではスタック)カスタム属性に渡す場合は、このパスワードを開くために持っている - 私のプロセスの流れは次のようになりますパスワードをチェックします
- 条件が正しいかどうか以下
は私のカスタムは
属性れますpublic class LevelSecurityAttribute : ActionFilterAttribute
{
public string PageName {get;set;}
public string Password { get; set; }
public string InvokeMethod { get; set; }
public void LevelSecurity(string pagename,string invokemethod,string password)
{
this.PageName = pagename;
this.Password = password;
}
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
//My Condition logic
base.OnActionExecuting(filterContext);
filterContext.Result=new RedirectResult("~/"+PageName+"/"+InvokeMethod);
}
}
以下は私のアクションメソッド
[HttpPost]
[ValidateAntiForgeryToken]
[LevelSecurity(PageName = "DocumentType", InvokeMethod = "Index", Password = **Need pass Password from View side stuck here**)]
public ActionResult Create(EmployeeMaster Employee,string password)
{
//Insert Employee Data if Password is Valid
return View();
}
してください友人が私を助け、私の考え方が間違っているなら、私に知らせてくださいです。
つまり、パスワードを渡すことはできませんが、リクエストコンテキストにアクセスしてそこから値を取得できます。 –
はい...とにかく私はこのシナリオでOPが成功するとは思いません。クライアントはすべてのリクエストにパスワードを渡すべきですか? –
お返事ありがとう –