欢迎光临
我们一直在努力

ASP.NET2.0中使用数据源控件之基础知识-.NET教程,Asp.Net开发

建站超值云服务器,限时71元/月

数据源控件是 microsoft visual studio 2005 中引入的一种新型服务器控件,它们是数据绑定体系结构的一个关键部分,能够通过数据绑定控件来提供声明性编程模型和自动数据绑定行为。本文及此系列中的后续几篇文章将介绍实现数据源控件的核心内容。

  引言

  简而言之,数据源控件概括了一个数据存储和可以针对所包含的数据执行的一些操作。databound 控件通过其 datasourceid 属性与一个数据源控件相关联。大多数传统的数据存储要么是表格格式,要么是分层的,数据源控件也相应地分为两类。在此要介绍的是表格格式的数据源控件。

  数据源控件自身并不能发挥多大作用;所有逻辑都封装在 datasourceview 派生的类中。至少有一个 datasourceview 必须实现检索(即 select)一组行的功能。它可以提供修改数据(即 insert、update 和 delete)的功能(可选)。数据绑定控件可通过各种 can??? 属性来检查启用功能集。数据源控件本身只是一个或多个唯一命名视图的容器。依据惯例,默认视图可以按其名称进行访问,也可以为空。不同视图之间是否存在关系或者存在怎样的关系可以根据每个数据源控件的实现情况来进行适当的定义。例如,某个数据源控件可能会通过不同的视图对同一个数据提供不同的经筛选的视图,或者可能会在辅助视图中提供一组子行。可使用数据绑定控件的 datamember 属性来选择某个特殊的视图(如果该数据源控件提供了多个视图)。请注意,whidbey 中的所有内置数据源控件目前都不提供多个视图。

  最后再介绍一点内容。数据源控件(及其视图)会实现两组 api。第一组 api 是就四种常用的数据操作而定义的一个抽象界面,以常规方式从任一数据绑定控件中使用。第二组是可选的,它使用其表示的域或数据存储方面的术语来定义,通常被强类型化,且面向应用程序开发人员。

  示例

  在这些文章中,将实现一个 weatherdatasource,它将针对由 weather.com(英文)提供的 rest(英文)xml api 来工作,以便根据邮政编码来检索天气信息。通常会首先实现派生的数据源控件。

public class weatherdatasource : datasourcecontrol {
 public static readonly string
 currentconditionsviewname = “currentconditions”;

 private weatherdatasourceview _currentconditionsview;

 private weatherdatasourceview currentconditionsview {
  get {
   if (_currentconditionsview == null) {
    _currentconditionsview = new weatherdatasourceview(this, currentconditionsviewname);
   }
   return _currentconditionsview;
  }
 }

 public string zipcode {
  get {
   string s = (string)viewstate[“zipcode”];
   return (s != null) ? s : string.empty;
  }
  set {
   if (string.compare(value, zipcode,
    stringcomparison.ordinal) != 0) {
     viewstate[“zipcode”] = value;
     currentconditionsview.raisechangedevent();
   }
  }
 }

 protected override datasourceview getview(string viewname) {
  if (string.isnullorempty(viewname) ||
     (string.compare(viewname, currentconditionsviewname,
     stringcomparison.ordinalignorecase) == 0)) {
      return currentconditionsview;
  }
  throw new argumentoutofrangeexception(“viewname”);
 }

 protected override icollection getviewnames() {
  return new string[] { currentconditionsviewname };
 }

 public weather getweather() {
  return currentconditionview.getweather();
 }
}

  如您所见,基本的理念是实现 getview 以返回一个命名视图实例,以及实现 getviewnames 以返回可用视图集。

  在此选择从 datasourcecontrol 中派生。有一点是不易察觉的,事实上数据绑定控件要查找 idatasource 界面,而 datasource 控件通过实现 getview 和 getviewnames 来实现该界面。之所以需要界面是为了使数据源控件能够既是表格格式又是分层的(如果可能的话),在这种情况下从主要模型中派生并将另一个模型作为界面来实现)。其次,还允许在各种方案中转换其他控件,以使数据源的容量加倍。 另外还要注意公共 zipcode 属性和返回强类型化 weather 对象的 getweather 方法。此 api 适合于页面开发人员。页面开发人员无需考虑 datasourcecontrol 和 datasourceview。

  下一步是实现数据源视图本身。此特定示例仅提供了 select 级功能(这只是最低要求,也是在此方案中唯一有用的功能)。

private sealed class weatherdatasourceview : datasourceview {

private weatherdatasource _owner;

public weatherdatasourceview(weatherdatasource owner, string viewname)
: base(owner, viewname) {
 _owner = owner;
}

protected override ienumerable executeselect(
 datasourceselectarguments arguments) {
  arguments.raiseunsupportedcapabilitieserror(this);

  weather weatherobject = getweather();
  return new weather[] { weatherobject };
 }

 internal weather getweather() {
  string zipcode = _owner.zipcode;
  if (zipcode.length == 0) {
   throw new invalidoperationexception();
  }

 weatherservice weatherservice = new weatherservice(zipcode);
 return weatherservice.getweather();
}

internal void raisechangedevent() {
 ondatasourceviewchanged(eventargs.empty);
}
}

  默认情况下,datasourceview 类从诸如 canupdate 等的属性返回 false,而从 update 和相关方法抛出 notsupportedexception。在此,在 weatherdatasourceview 中唯一需要做的就是替代抽象的 executeselect 方法,返回包含“选定”天气数据的 ienumerable。在实现过程中,使用了帮助程序 weatherservice 类,该类仅使用 webrequest 对象来查询 weather.com(英文),方法是使用所选的邮政编码(这没什么特别的)。

  您可能注意到了,executeselect 被标记为受保护。数据绑定控件实际调用的是在回拨中传递的公共(和密封)select 方法。select 的实现会调用 executeselect,并调用回拨与得到的 ienumerable 实例。这种模式非常古怪。这其中有一个原因,此系列随后的文章中将会加以说明。请稍候…

  下面是该用法的示例:

zip code: <asp:textbox runat=”server” id=”zipcodetextbox” />
<asp:button runat=”server” onclick=”onlookupbuttonclick” text=”查找” />
<hr />

<asp:formview runat=”server” datasourceid=”weatherds”>
<itemtemplate>
<asp:label runat=”server”
text=<%# eval(“temperature”, “当前温度是 {0}。”) %> />
</itemtemplate>
</asp:formview>
<nk:weatherdatasource runat=”server” id=”weatherds” zipcode=”98052″ />

<script runat=”server”>
private void onlookupbuttonclick(object sender, eventargs e) {
weatherds.zipcode = zipcodetextbox.text.trim();
}
</script>

  此代码设置了邮政编码来响应用户输入,这会使数据源发出更改通知,从而使绑定的 formview 控件执行数据绑定并更改显示。

  现在,数据访问代码就被封装在数据源控件中。此外,通过此模型,weather.com(英文)能够发布一个组件,该组件还可以封装特定于其服务的详细信息。但愿它会好用。此外,抽象的数据源界面允许 formview 仅针对天气数据进行工作。

  在下一篇文章中,将增强数据源控件的功能,使其能够自动处理用来查询数据的筛选值(即邮政编码)的更改。

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » ASP.NET2.0中使用数据源控件之基础知识-.NET教程,Asp.Net开发
分享到: 更多 (0)