在 Databinder.Eval 之前
..曾经有另一种方法可以使用“ItemBinder”属性将项目绑定到 ASP.Net 中的数据容器,但 google 上的任何内容都刷新不了我的记忆。
通常,我会有一个字符串数组,当绑定时我的 DataGrid 应该显示数组的值。这是 DataBinder.Eval() 的替代方法。
谢谢
..there used to be another method of binding items to data containers in ASP.Net using 'ItemBinder' property maybe but nothing on google refreshes my memory.
Typically, I would have a string array which when bound to say my DataGrid should show the array's values. This is an alternative method to DataBinder.Eval().
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不必使用 databinder.eval 来绑定结果。
您可以输入如下内容:
“<%# (string)Container.DataItem %>”
假设您希望数组的输出位于字符串中,并且假设它还不是字符串。
You don't have to use the databinder.eval to bind a result.
You can just put in something like this:
`<%# (string)Container.DataItem %>'
Assuming you want the output of the array to be in a string, and assuming it's not already a string.