asp.net中eval表达式的使用区别
我只是想了解 eval
的作用。假设,我有一个 gridview - 如果我使用有什么区别
Text='<%# Eval("FieldName") %>' in .aspx
,
DataBinder.Eval(e.Row.DataItem, "FieldName") in aspx.cs
谁能用简单的术语解释一下其中每一个的作用是什么以及我们应该在什么情况下使用它们?或者它们可以互换使用吗?
I have been just trying to understand what does eval
do. Suppose, I have a gridview - what is the difference if I use
Text='<%# Eval("FieldName") %>' in .aspx
and
DataBinder.Eval(e.Row.DataItem, "FieldName") in aspx.cs
Can anyone explain in simple terms what does each one of these do and in what case should we use them? Or can they be used interchangeably?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般来说,这两种方法没有区别,因为Eval实际上调用的是DataBinder.Eval方法。更多详情请参考
DataBinder.Eval vs Eval
Generally, there is no difference between these two methods as the Eval actually calls the DataBinder.Eval method. For more details, please refer to
DataBinder.Eval vs Eval