使用中继器控件显示列表值 asp.net
我已将 DirectoryInfo.GetFiles()
中的内容添加到 List
中。现在我希望使用 Repeater 控件显示列表中的每一行。 当我直接从 DirectoryInfo.GetFiles()
获取数据时,我之前已经使用 <%# Eval("Name") %>
完成了此操作。
但现在当它们位于列表中时,“名称”属性似乎不再存在。那么我应该如何使用 Eval 来做到这一点呢?
I've added the content from DirectoryInfo.GetFiles()
to a List<string>
. Now I wish to display each row from the list using the Repeater control.
I've done this before with the <%# Eval("Name") %>
when I got the data directly from DirectoryInfo.GetFiles()
.
But now when they're in a list, the "Name" attribute does not seem to be there anymore. So how should I do this with the Eval..?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现在数据就是字符串本身。使用此代码获取它。
以及后面的代码
Now the Data is the string itself. Get it using this code.
and on code behind