首页 > 开发 > 综合 > 正文

利用数据绑定和模板创建Atlas应用程序

2024-07-21 02:29:15
字体:
来源:转载
供稿:网友

  一、 简介

  本文将向你展示如何使用微软新的技术(代码名为atlas)来实现数据绑定和模板。如果你已经理解什么是atlas,其主要设计目的及其主要组件,那么你在阅读本文时将最大程度地受益。

  本文将向你展示:

  · 把一个客户端listview控件绑定到一个datasource控件。

  · 使用模板显示数据。

  前提

  为了完成本文中的示例程序,你需要具备下列条件:

  · microsoft visual studio 2005和.net framework 2.0。有关下载信息,请访问.net framework developer center web站点。

  · 要把atlas包安装到你的计算机上。这个msi安装器文件包括一个visual studio content installer(.vsi)以便在visual studio中创建一个空白的atlas web应用程序。在本文中,我们省略了如何安装asp.net atlas内容。

  二、 创建atlas应用程序

  首先,你要在visual studio中创建一个atlas web应用程序。当你使用visual studio工程模板来创建一个新的空白atlas web应用程序时,visual studio会创建一个正常的具有下列一些其它项的web站点文件夹结构:

  · 一个名为microsoft.web.atlas.dll的可执行文件,它驻留在bin文件夹下以提供服务器端功能。

  · 一个文件web.config,用于设置atlas应用程序。

  在visual studio中创建一个新的atlas web应用程序

  1. 在"file"菜单下,点击"new",然后点击"web site"。

  2. 在"new web site"对话框中,选择"asp.net atlas web site"模板项。

  3. 在"location"列表中,选择"file system"。

  4. 指定程序的一个路径和开发语言,然后点击"ok"。

  三、 提供应用程序测试数据

  在这一部分中,你要创建数据绑定程序所要使用的两项内容:

  · 一个数据源对象-它通过提供一些测试数据和类sql语句来模拟一个数据库。

  · 一个web服务-它连接到数据源对象并且把该数据提供给一个使用atlas组件创建的ui。

  首先,你要创建数据源对象。

  创建数据源对象

  1. 在解决方案资源管理器中,右击站点名字,然后点击"add new item"。

  2. 在"add new item"对话框中,选择"class",并且命名这个类为samplerow(没有文件扩展名)。

  3. 为该类选择开发语言,然后点击"add"按钮。

  4. 当系统提问你,是否你想把这个类文件放到app_code文件夹下时,点击"yes"。

  5. 在编辑器中,从已有类中删除任何现有代码。

  6. 把下列代码粘贴到这个类中以创建一个数据源对象。

using system;
using system.collections;
using system.componentmodel;
public class samplerow{
private string _name;
private string _description;
private int _id;
[dataobjectfield(true, true)]
public int id
{
get { return _id; }
set { _id = value; }
}
[dataobjectfield(false)]
[defaultvalue("new row")]
public string name
{
get { return _name; }
set { _name = value; }
}
[dataobjectfield(false)]
[defaultvalue("")]
public string description
{
get { return _description; }
set { _description = value; }
}
public samplerow()
{
_id = -1;
}
public samplerow(int id, string name, string description)
{
_id = id;
_name = name;
_description = description;
}
}

  7. 保存并关闭文件。

  下一步是创建一个web服务,由该服务为asp.net web页面提供来自于数据源对象的数据。

  创建web服务为页面提供数据

  1. 在解决方案资源管理器中,右击站点名字,然后点击"add new item"。

  2. 在"add new item"对话框中,在visual studio已安装的模板下,选择"web service"。

  3. 指定文件名为dataservice.asmx并且不点选"place code in separate file"复选框。

  4. 选择你想使用的语言。

  5. 点击"add"。

  6. 在编辑器中,从现有类中删除任何现有代码。

  7. 把下列代码粘贴到这个类中以创建一个数据源对象。

<%@ webservice language="c#" class="sampledataservice" %>
using system;
using system.collections;
using system.collections.generic;
using system.componentmodel;
using system.io;
using system.web;
using system.web.caching;
using system.web.services;
using system.web.services.protocols;
using microsoft.web.services;
[webservice(namespace = "http://tempuri.org/")]
[webservicebinding(conformsto = wsiprofiles.basicprofile1_1)]
public class sampledataservice : dataservice {
static list<samplerow> _data;
static int _nextid;
static object _datalock = new object();
private static list<samplerow> data {
 get {
  if (_data == null) {
   lock (_datalock) {
    if (_data == null) {
     _data = new list<samplerow>();
      _data.add(new samplerow(0, "a. datum corporation", "http://www.adatum.com"));
      _data.add(new samplerow(1, "adventure works", "http://www.adventure-works.com"));
      _data.add(new samplerow(2, "alpine ski house", "http://www.alpineskihouse.com"));
      _data.add(new samplerow(3, "baldwin museum of science?", "http://www.baldwinmuseumofscience.com"));
      _data.add(new samplerow(4, "blue yonder airlines","http://www.blueyonderairlines.com"));
      _data.add(new samplerow(5, "city power & light","http://www.cpandl.com"));
      _data.add(new samplerow(6, "coho vineyard","http://www.cohovineyard.com"));
      _data.add(new samplerow(7, "contoso, ltd","http://www.contoso.com"));
      _data.add(new samplerow(8, "graphic design institute",
"http://www.graphicdesigninstitute.com"));
      _nextid = 9;
     }
    }
   }
   return _data;
  }
 }
[dataobjectmethod(dataobjectmethodtype.delete)]
public void deleterow(int id) {
 foreach (samplerow row in _data) {
  if (row.id == id) {
   lock (_datalock) {
    _data.remove(row);
   }
   break;
  }
 }
}
[dataobjectmethod(dataobjectmethodtype.select)]
public samplerow[] selectrows() {
 return sampledataservice.data.toarray();
}
[dataobjectmethod(dataobjectmethodtype.insert)]
public samplerow insertrow(string organization, string url) {
 samplerow newrow;
 lock (_datalock) {
  newrow = new samplerow(_nextid++, organization, url);
  _data.add(newrow);
 }
 return newrow;
}
[dataobjectmethod(dataobjectmethodtype.update)]
public void updaterow(samplerow updaterow) {
 foreach (samplerow row in _data) {
  if (row.id == updaterow.id) {
   row.name =updaterow.name;
   row.description = updaterow.description;
   break;
  }
 }
}
}

  8. 保存并关闭该文件。

  四、 创建宿主控件的web页面

  在这一部分中,你将创建一个新的asp.net web页面来宿主数据绑定控件和模板。

  创建一个web页面

  1. 添加一新的asp.net页面到你的工程并且命名它为databinding.aspx。

  注意 确保你清除了"place code in separate file"复选框。在此,你必须创建单个asp.net web页面。

  2. 切换到"source view"。

  3. 在@page指令中,把title属性设置为"atlas data-binding walkthrough",如下面的示例所示:

<%@ page language="c#" title="atlas data-binding walkthrough" %>

  4. 把下列标注内容复制并粘贴到在@page指令下的文件中:

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en"
"http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body>
 <form id="main" runat="server">
  <atlas:scriptmanager runat="server" id="scriptmanager" />
  <h3>data-bound listview</h3>
  <div id="datacontents"></div>
  <div >
   <div id="mastertemplate">
    <div id="masteritemtemplate">
     <b><span id="mastername"></span></b>
     <br />
     <asp:linkbutton id="linkbutton1" runat="server">
      <span id="masterdescription"></span>
     </asp:linkbutton><br />
    </div><br/>
   </div>
   <div id="masternodatatemplate">no data</div>
  </div>
 </form>
<script type="text/xml-script">
 <page xmlns:script="http://schemas.microsoft.com/xml-script/2005">
 <components>
 <datasource id="datasource" serviceurl="dataservice.asmx" autoload="true" />
 <listview id="datacontents" itemtemplateparentelementid="mastertemplate"
propertychanged="onchange">
 <bindings>
  <binding datacontext="datasource" datapath="data" property="data"/>
 </bindings>
 <layouttemplate>
  <template layoutelement="mastertemplate"/>
 </layouttemplate>
 <itemtemplate>
  <template layoutelement="masteritemtemplate">
  <label id="mastername">
   <bindings>
    <binding datapath="name" property="text"/>
   </bindings>
  </label>
  <hyperlink id="masterdescription">
   <bindings>
    <binding datapath="description" property="text"/>
   </bindings>
  </hyperlink>
 </template>
 </itemtemplate>
 <emptytemplate>
  <template layoutelement="masternodatatemplate"/>
 </emptytemplate>
</listview>
</components>
</page>
</script>
</body>
</html>

  注意,在<script>元素内,存在一些声明性元素-它们指定atlas客户端控件和数据绑定布局。该数据是由服务器端服务所指定的,而ui是由绑定到它们的客户端控件所提供的。注意,你可以使用这种声明性语法来指定当应用程序事件发生时会发生什么,正如你用javascript代码所能够实现的功能一样。请检查上面标注中的<datasource>元素。它有一个属性serviceurl来指向检索数据的web服务,还有一个autoload来指示当对象被创建时应该立即检索该数据。结果是,当应用程序加载时,数据就会立即从数据源中进行检索并通过页面中的模板进行显示。

  5. 保存并关闭该页面。

  测试页面

  1. 运行databinding.aspx页面。

  2. 确保在页面装载以后,有一组公司及其各自的url显示出来。

  五、 总结

  在本文中,你学习了怎样"atlas化"客户端控件以存取服务器端数据服务。这里所使用的数据绑定语法非常类似于用于把asp.net服务器控件绑定到数据的指令语法。具体地说,你学习了如何把一个客户端listview控件绑定到一个datasource控件,以及如何使用一个声明性layouttemplate元素和其它atlas控件和标准html标注来指定数据在页面上的生成方式。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表