格式化数据列表显示

发布于 2024-10-28 19:42:12 字数 193 浏览 2 评论 0原文

我在以适当的方式格式化数据列表时遇到问题。我有一个宽度设置为 733px 的数据列表,我想要的是在该宽度内显示数据列表,如果该项目超出宽度,它应该转到下一行,目前它超出了宽度...... ., 我如何控制数据列表以每行显示例如 4,然后转到下一行。我在数据列表中使用了 RepeatDirection="Horizo​​ntal" 。

任何帮助将不胜感激。

I am having problems to format datalist in an appropriate way. I have got an whose width is set to 733px, What I want is to to display the datalist within that width , if the item is exceeding the width it should go to next line, currently it is going out of the width ....., How can i control the datalist to show for instance 4 per line then go to next line. I have used RepeatDirection="Horizontal" in my datalist.

Any help will be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

櫻之舞 2024-11-04 19:42:12

查看 DataList。 RepeatColumns 属性:

DataList1.RepeatColumns = 4;
DataList1.RepeatDirection = RepeatDirection.Horizontal;

Take a look onto DataList.RepeatColumns property:

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