gpt4 book ai didi

c# - 如何为每个必需的属性设置相同的参数

转载 作者:行者123 更新时间:2023-11-30 13:50:59 25 4
gpt4 key购买 nike

我正在为我的 ASP MVC 应用程序进行本地化,我想为每个属性设置相同的设置。

例如:

    [Required(ErrorMessageResourceType = typeof(Resources), ErrorMessageResourceName = "RequiredAttribute_ValidationError")]
[Display(Name = "Hasło")]
public string Password { get; set; }

有什么办法可以自动完成吗?

最佳答案

创建 CustomRequiredAttribute 后,您应该在 Global.asax 中注册您的自定义属性

protected void Application_Start()
{
DataAnnotationsModelValidatorProvider.RegisterAdapter(typeof(CustomRequiredAttribute), typeof(RequiredAttributeAdapter));
...

来源:http://forums.asp.net/t/1528277.aspx

关于c# - 如何为每个必需的属性设置相同的参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5282409/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com