c# – StringLengthAttribute和本地化文本

前端之家收集整理的这篇文章主要介绍了c# – StringLengthAttribute和本地化文本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
以下代码是从MSDN: http://msdn.microsoft.com/en-us/library/system.componentmodel.dataannotations.stringlengthattribute.aspx获取
[MetadataType(typeof(ProductMetadata))]
public partial class Product
{

}

public class ProductMetadata
{

    [ScaffoldColumn(true)]
    [StringLength(4,ErrorMessage = "The ThumbnailPhotoFileName value cannot exceed 4 characters. ")]
    public object ThumbnailPhotoFileName;

}

如何将本地化文本(例如:从资源文件中)应用于错误消息?

解决方法

使用 ValidationAttribute.ErrorMessageResourceType属性引用资源文件,使用 ValidationAttribute.ErrorMessageResourceName属性引用该资源文件中的字符串名称.例如:
[StringLength(4,ErrorMessageResourceType = typeof(YourResourceFileHere),ErrorMessageResourceName = "NameOfStringInResourceFile")]

如果您需要更多示例,还可以查看this blog post.

猜你在找的C#相关文章