当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP.NET > ASP.NET - Data Binding(数据绑定)

ASP.NET
ASP.NET 介绍
ASP 和 ASP.NET 之间的区别
asp.net的安装
asp.net的网页
ASP.NET - 服务器控件
ASP.NET - 事件
ASP.NET Web 表单
ASP.NET 维持浏览状态
ASP.NET - TextBox(文本框)控件
ASP.NET - 按钮控件
ASP.NET - Data Binding(数据绑定)
ASP.NET - The ArrayList Object(数组列表对象)
ASP.NET - The Hashtable Object 哈希表对象
ASP.NET - The SortedList Object 可排序列表对象
ASP.NET - XML 文件
ASP.NET - Repeater Control 转发器控件
ASP.NET - The DataList Control 数据列表控件
ASP.NET - Database Connection 数据库连接
ASP.NET 2.0 新特征
ASP.NET 2.0 - Master Pages 控制页[主页]

ASP.NET - Data Binding(数据绑定)


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-01   浏览: 952 ::
收藏到网摘: n/a

We may use data binding to fill lists with selectable items from an imported data source, like a database, an XML file, or a script.
我们可以将导入的数据源使用数据绑定来把信息填入选择框内,数据源可以是数据库,XML文件或是脚本。


Data Binding
数据绑定

The following controls are list controls which support data binding:
以下罗列的控件可以支持数据绑定:

  • asp:RadioButtonList
  • asp:CheckBoxList
  • asp:DropDownList
  • asp:Listbox

The selectable items in each of the above controls are usually defined by one or more asp:ListItem controls, like this:
在以上这些控件要有可选项目一般都要定义一个或多个asp:ListItem控件,像这样:

<html>
<body>
<form runat="server">
<asp:RadioButtonList id="countrylist" runat="server">
<asp:ListItem value="N" text="Norway" />
<asp:ListItem value="S" text="Sweden" />
<asp:ListItem value="F" text="France" />
<asp:ListItem value="I" text="Italy" />
</asp:RadioButtonList>
</form>
</body>
</html>

However, with data binding we may use a separate source, like a database, an XML file, or a script to fill the list with selectable items.
然而,通过数据绑定我们可以使用分离的源,比如数据库,XML文件或是脚本,让其中的信息填入可选择项目中。

By using an imported source, the data is separated from the HTML, and any changes to the items are made in the separate data source.
通过使用导入的源,数据可从HTML中分离开,任何项目信息的改变只要改变它的数据源就可以实现。

In the next three chapters, we will describe how to bind data from a scripted data source.
在接下来的三个篇章,我们将阐述如何绑定来自脚本的数据源。

评论 (1) 1 All

登陆 | 还没注册?