1
可能重複:
runtime loading of ValidateAntiForgeryToken Salt valueMVC3防僞造 - 如何使用鹽從配置文件
我已經添加了鹽,放入配置文件,但它拋出下面的錯誤。有沒有辦法從配置文件中使用Salf值?我試圖使用Static
而不是const
,但無法正常工作。
錯誤 constant initializer must be compile-time constant
代碼
public const string SaltValue= ConfigurationManager.AppSettings["SaltValue"];
[HttpPost]
[ValidateAntiForgeryToken(Salt = SaltValue)]
public ActionResult Index(SomeViewModel someViewModel)
{
return View();
}
非常感謝
看起來不像重複 – user1211185