谁能告诉我一些绝对最小的 ASP.NET 代码来理解Eval()
和Bind()
?
最好给我提供两个单独的代码片段或者可能是网络链接。
对于只读控件,它们是相同的。对于 2 路数据绑定,使用要通过声明性数据绑定在其中更新、插入等的数据源,您需要使用Bind
.
例如,想象一个带有ItemTemplate
and的 GridView EditItemTemplate
。如果在 中使用Bind
or Eval
,ItemTemplate
则没有区别。如果在 中使用Eval
,则EditItemTemplate
该值将无法传递给网格绑定到的Update
方法。DataSource
更新:我想出了这个例子:
<%@ Page Language="C#" %>
<!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 runat="server">
<title>Data binding demo</title>
</head>
<body>
<form id="form1" runat="server">
<asp:GridView
ID="grdTest"
runat="server"
AutoGenerateEditButton="true"
AutoGenerateColumns="false"
DataSourceID="mySource">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<%# Eval("Name") %>
</ItemTemplate>
<EditItemTemplate>
<asp:TextBox
ID="edtName"
runat="server"
Text='<%# Bind("Name") %>'
/>
</EditItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
</form>
<asp:ObjectDataSource
ID="mySource"
runat="server"
SelectMethod="Select"
UpdateMethod="Update"
TypeName="MyCompany.CustomDataSource" />
</body>
</html>
这是用作对象数据源的自定义类的定义:
public class CustomDataSource
{
public class Model
{
public string Name { get; set; }
}
public IEnumerable<Model> Select()
{
return new[]
{
new Model { Name = "some value" }
};
}
public void Update(string Name)
{
// This method will be called if you used Bind for the TextBox
// and you will be able to get the new name and update the
// data source accordingly
}
public void Update()
{
// This method will be called if you used Eval for the TextBox
// and you will not be able to get the new name that the user
// entered
}
}
Darin Dimitrov 完美地回答了这个问题,但是从ASP.NET 4.5开始,现在有了更好的方法来设置这些绑定来替换*Eval()
和Bind()
,利用强类型绑定。
*注意:这仅在您不使用 aSqlDataSource
或anonymous object
. 它需要一个强类型对象(来自EF 模型或任何其他类)。
此代码片段显示了如何Eval
以及Bind
将如何用于ListView
控件(InsertItem
需要Bind
,如上面 Darin Dimitrov 所述,并且ItemTemplate
是只读的(因此它们是标签),因此只需要一个Eval
):
<asp:ListView ID="ListView1" runat="server" DataKeyNames="Id" InsertItemPosition="LastItem" SelectMethod="ListView1_GetData" InsertMethod="ListView1_InsertItem" DeleteMethod="ListView1_DeleteItem">
<InsertItemTemplate>
<li>
Title: <asp:TextBox ID="Title" runat="server" Text='<%# Bind("Title") %>'/><br />
Description: <asp:TextBox ID="Description" runat="server" TextMode="MultiLine" Text='<%# Bind("Description") %>' /><br />
<asp:Button ID="InsertButton" runat="server" Text="Insert" CommandName="Insert" />
</li>
</InsertItemTemplate>
<ItemTemplate>
<li>
Title: <asp:Label ID="Title" runat="server" Text='<%# Eval("Title") %>' /><br />
Description: <asp:Label ID="Description" runat="server" Text='<%# Eval("Description") %>' /><br />
<asp:Button ID="DeleteButton" runat="server" Text="Delete" CommandName="Delete" CausesValidation="false"/>
</li>
</ItemTemplate>
从ASP.NET 4.5+ 开始,数据绑定控件已使用新属性进行了扩展,该属性ItemType
指向您分配给其数据源的对象类型。
<asp:ListView ItemType="Picture" ID="ListView1" runat="server" ...>
Picture
是强类型对象(来自 EF 模型)。然后我们替换:
Bind(property) -> BindItem.property
Eval(property) -> Item.property
所以这:
<%# Bind("Title") %>
<%# Bind("Description") %>
<%# Eval("Title") %>
<%# Eval("Description") %>
会变成这样:
<%# BindItem.Title %>
<%# BindItem.Description %>
<%# Item.Title %>
<%# Item.Description %>
优于 Eval & Bind 的优点:
来源:来自这本优秀的书