快速业务通道

扩展ASP.NET 2.0资源提供程序模型(3)

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-21
方法 说明 EvaluateExpression 在未编译页面中返回 ExternalResource 表达式的资源值。 GetCodeExpression 返回为 ExternalResource 表达式生成的代码。此代码将调用自定义资源提供程序 GlobalExternalResourceProvider。 ParseExpression 通过尝试访问表达式资源来验证 ExternalResource 表达式。如果无法找到资源,页面分析将失败。 SupportsEvaluate 属性 指示是否支持未编译页面判断。在此实现中,将返回 true。

使用 ExternalResourceExpressionBuilder,可声明如下所示的自定义本地化表达式。

<asp:Label ID="labExternalResource" runat="server" Text="<%$ ExternalResources:CommonResources|CommonTerms, Hello %>" meta:localize="false" ></asp:Label>

请记住,表达式在设计时并且在编译前进行分析。在页面分析期间会调用 ParseExpression,以验证资源表达式是否准确以及请求的资源是否实际存在。以下代码说明了此实现。

public override object ParseExpression(string expression, Type propertyType, ExpressionBuilderContext context)
{
  if (string.IsNullOrEmpty(expression))
  {
throw new ArgumentException(String.Format(Thread.CurrentThread.CurrentUICulture,Properties.Resources.Expression_TooFewParameters, expression));
  }
  ExternalResourceExpressionFields fields = null;
  string classKey = null;
  string resourceKey = null;
  string[] expParams = expression.Split(new char[] { '','' });
  if (expParams.Length > 2)
  {
throw new ArgumentException(String.Format(Thread.CurrentThread.CurrentUICulture, Properties.Resources.Expression_TooManyParameters, expression));
  }
  if (expParams.Length == 1)
  {
throw new ArgumentException(String.Format(Thread.CurrentThread.CurrentUICulture, Properties.Resources.Expression_TooFewParameters, expression));
  }
  else
  {
classKey = expParams[0].Trim();
resourceKey = expParams[1].Trim();
  }
  fields = new ExternalResourceExpressionFields(classKey, resourceKey);
 
  ExternalResourceExpressionBuilder.EnsureResourceProviderFactory();
  IResourceProvider rp = ExternalResourceExpressionBuilder.
s_resourceProviderFactory.CreateGlobalResourceProvider(fields.ClassKey);
  object res = rp.GetObject(fields.ResourceKey, CultureInfo.InvariantCulture);
  if (res == null)
  {
throw new ArgumentException(String.Format(Thread.CurrentThread.CurrentUICulture, Properties.Resources.RM_ResourceNotFound, fields.ResourceKey));
  }
  return fields;
}

多数代码集中在验证表达式上,但核

在此例中,新前缀为“ExternalResource”。此新表达式的所需语法如下所示。

<%$ ExternalResource: [assemblyName]|[resourceType], [resourceKey] %>

此表达式将使用先前介绍的同一 GlobalExternalResourceProvider 从特定程序集提取资源。为支持这一新表达式,我们将创建一个自定义类型 ExternalResourceExpressionBuilder。表 2 总结了由每个替换的 ExpressionBuilder 方法所提供的功能。

表 2 总结了由每个替换方法所提供的功能

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号