60

谁能告诉我一些绝对最小的 ASP.NET 代码来理解Eval()Bind()

最好给我提供两个单独的代码片段或者可能是网络链接。

4

2 回答 2

83

对于只读控件,它们是相同的。对于 2 路数据绑定,使用要通过声明性数据绑定在其中更新、插入等的数据源,您需要使用Bind.

例如,想象一个带有ItemTemplateand的 GridView EditItemTemplate。如果在 中使用Bindor EvalItemTemplate则没有区别。如果在 中使用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
    }
}
于 2009-11-22T09:13:29.690 回答
31

Darin Dimitrov 完美地回答了这个问题,但是从ASP.NET 4.5开始,现在有了更好的方法来设置这些绑定来替换*Eval()Bind(),利用强类型绑定

*注意:这仅在您使用 aSqlDataSourceanonymous 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 的优点

  • IntelliSense 可以找到您正在使用的对象的正确属性在此处输入图像描述
  • 如果属性被重命名/删除,您将在浏览器中查看页面之前收到错误消息
  • 当您重命名对象上的属性时,外部工具(需要完整版本的 VS)将正确重命名标记中的项目

来源:来自这本优秀的书

于 2015-09-15T10:59:10.973 回答