<%# DataBinder.Eval(Container.DataItem,"ColumnName") %> 是什么意思? Item Template 中到底做什么?
我第一次使用 DataList
。一切正常,我可以在屏幕上看到数据。 我正在项目模板中使用此代码。
<asp:DataList ID="DataList1" runat="server">
<FooterTemplate>
</FooterTemplate>
<HeaderTemplate>
</HeaderTemplate>
<ItemTemplate>
<%# DataBinder.Eval(Container.DataItem,"AA") %>
<%# DataBinder.Eval(Container.DataItem,"BB") %>
<%# DataBinder.Eval(Container.DataItem,"CC") %>
</ItemTemplate>
</asp:DataList>
这是我绑定的 DataTable
DataTable dt = new DataTable();
dt.Columns.Add("AA");
dt.Columns.Add("BB");
dt.Columns.Add("CC");
dt.Rows.Add("1", "2", "3");
dt.Rows.Add("10", "20", "30");
dt.Rows.Add("100", "200", "300");
dt.Rows.Add("1000", "2000", "3000");
DataList1.DataSource = dt;
DataList1.DataBind();
DataBinder.Eval(Container.DataItem,"ColumnName")
到底做什么? 先感谢您
Iam using DataList
for the first time. Every thing works fine and I am able to see the data in the screen.
I am making use of this code in the item template.
<asp:DataList ID="DataList1" runat="server">
<FooterTemplate>
</FooterTemplate>
<HeaderTemplate>
</HeaderTemplate>
<ItemTemplate>
<%# DataBinder.Eval(Container.DataItem,"AA") %>
<%# DataBinder.Eval(Container.DataItem,"BB") %>
<%# DataBinder.Eval(Container.DataItem,"CC") %>
</ItemTemplate>
</asp:DataList>
This is the DataTable
that I am binding
DataTable dt = new DataTable();
dt.Columns.Add("AA");
dt.Columns.Add("BB");
dt.Columns.Add("CC");
dt.Rows.Add("1", "2", "3");
dt.Rows.Add("10", "20", "30");
dt.Rows.Add("100", "200", "300");
dt.Rows.Add("1000", "2000", "3000");
DataList1.DataSource = dt;
DataList1.DataBind();
What does DataBinder.Eval(Container.DataItem,"ColumnName")
do exactly.?
Thank you in Advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
参数 1:
Container.DataItem
指的是绑定到当前容器的datasource
。参数 2:应评估的
DataItem
上的公共属性。因此 Eval 使用反射来评估
DataItem
上的公共属性。例如:
在您的情况下,它会评估
DataTable
上的BB
列。Argument 1:
Container.DataItem
refers to thedatasource
that is bound to the current container.Argument 2: The public property on the
DataItem
which should be evaluated.So Eval uses reflection to evaluate the public property on the
DataItem
.ex:
In you case it evaluates the
BB
column on theDataTable
.以下行将执行与表中行数一样多的次数。
每次Container.DataItem都会有数据表中相应的DataRowView行。
该项目中发生的情况与此代码类似。
获得的输出将是
The following lines will be executed as many times as the number of rows in the Table.
Each time Container.DataItem will have the corresponding DataRowView of the rows in the datatable.
What happens in the item is similar to this code.
And the output obtained will be