asp.net中eval表达式的使用区别

发布于 2024-11-02 16:50:40 字数 287 浏览 0 评论 0原文

我只是想了解 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

高冷爸爸 2024-11-09 16:50:40

一般来说,这两种方法没有区别,因为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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文