我正在尝试为Globalization
属性内的Captcha
实现CaptchaValidation
我将Global.resx文件中的消息资源CaptchaErrMsg
设置为Wrong Captcha
现在,在我的控制器中,我要将验证码的错误消息设置为此资源:
[CaptchaValidation("CaptchaCode", "ForgotPasswordCaptcha", Resources.Global.CaptchaErrMsg)]
这种方法行不通。它在Resources.Global.CaptchaErrMsg
上用红线加了下划线,并显示类似
属性参数必须是常量表达式
正确的方法是什么?