数据列表中的行分隔符
我正在使用数据列表控件。如何在数据列表中添加行分隔符? 我连续有多个项目,并且我正在使用 .Net 2.0。
分隔符模板适用于每个项目而不是每行。
我想像这样显示它。
row1-> item1 item2
---separator
row2-> item3 item4
---separator
row3-> item5 item6
I'm using a datalist control. How I can add a row separator in the datalist?
I have more than one item in a row and I'm using .Net 2.0.
Separator template work for each item not for each row.
I want to display it like this.
row1-> item1 item2
---separator
row2-> item3 item4
---separator
row3-> item5 item6
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个:
更新
如果你想要一个简单的边框,这种方式可能会有所帮助。唯一的问题是最新行也有分隔符。
Try this:
Update
If you want a simple border this way may help. the only problem is that latest row has a separator too.
使用 DataList.SeparatorTemplate 属性
例如
并查看此
DataList.SeparatorTemplate属性
Use DataList.SeparatorTemplate Property
e.g.
And look into this
DataList.SeparatorTemplate Property
这里通过示例解释了基于数据格式化 DataList 和 Repeater< /a>,看看。
Formatting the DataList and Repeater Based Upon Data is explained with examples here,have a look.