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

ASP.NET
ASP.NET 2.0 - Navigation 导航
C#中new和override区别
ASP.NET中 Bin,App_Browser,App_code,App_Data,App_Theme 等文件

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


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-01   浏览: 953 ::
收藏到网摘: 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

登陆 | 还没注册?