当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP.NET > ASP.NET - Data Binding(数据绑定)
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文件或是脚本。
The following controls are list controls which support data binding:
以下罗列的控件可以支持数据绑定:
The selectable items in each of the above controls are usually defined by one or more asp:ListItem controls, like this:
在以上这些控件要有可选项目一般都要定义一个或多个asp:ListItem控件,像这样:
<html> <form runat="server"> </body> |
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.
在接下来的三个篇章,我们将阐述如何绑定来自脚本的数据源。