6

我想从资源文件中ErrorMessage为我加载。CustomValidator

我的CustomValidator设置如下:

<asp:CustomValidator ID="cv1" runat="server" ControlToValidate="txt1" 
        ErrorMessage="TEXT TO BE LOCALIZED" OnServerValidate="cv1_Validate" />

我的验证方法如下:

protected void cv1_Validate(object source, ServerValidateEventArgs e)
{
    if (FalseCondition)
    {
        e.IsValid = false;
    }
    else
    {
        e.IsValid = true;
    }
}

验证工作正常,但我想ErrorMessage从我的本地资源文件中提取。

编辑:我也很好奇是否有任何方法可以使用meta:resourcekey.

4

2 回答 2

13

假设您的页面(或控件)有本地资源,这将是这样做的方法

ErrorMessage="<%$ resources:ResourceName %>"

如果您从全局资源文件中获取文本,您应该执行以下操作

ErrorMessage="<%$ resources:Strings, ResourceName %>"

文件名在哪里Strings。这种方法称为显式本地化。

编辑

您可以使用meta:resourcekey. 这称为隐式本地化。您需要拥有本地资源,因为这种方法对全局资源无效。

  1. 确保您具有满足以下条件的本地资源文件(.resx 文件):

    • 它们位于 App_LocalResources 文件夹中。

    • 基本名称与页面名称匹配。

    例如,如果您正在使用名为 Default.aspx 的页面,则资源文件名为 Default.aspx.resx(用于默认资源)、Default.aspx.es.resx、Default.aspx.es-mx.resx、等等。

    • 文件中的资源使用命名约定 resourcekey."property"。

    例如,键名 Button1."Text"。

  2. 在控件标记中,添加隐式本地化属性。

    例如:

    <asp:Button ID="Button1" runat="server" Text="DefaultText" meta:resourcekey="Button1" />

资料来源:MSDN

于 2012-08-29T14:59:09.517 回答
1

如果要在代码隐藏中执行此操作,可以使用以下内容:

ResourceManager resmgr = new ResourceManager("YourApplication.YourBaseResourceFile ", 
                              Assembly.GetExecutingAssembly());

protected void cv1_Validate(object source, ServerValidateEventArgs e) 
{   

if (FalseCondition)  
   {  
       CultureInfo ci = Thread.CurrentThread.CurrentCulture;    
       String str = resmgr.GetString("Error Msg Key in Resource File");
       cv1.ErrorMessage =str;      
       e.IsValid = false; 
    }     
else   
  {   
     e.IsValid = true;  
   } 
} 
于 2012-08-31T17:18:39.157 回答