asp.net 网格视图
我可以将GridView格式化为下图吗
100 ml TextBox1 TextBox2
Product A
200 ml TextBox3 TextBox4
100 ml TextBox1 TextBox2
Product A
200 ml TextBox3 TextBox4
Can i format GridView as the following figure
100 ml TextBox1 TextBox2
Product A
200 ml TextBox3 TextBox4
100 ml TextBox1 TextBox2
Product A
200 ml TextBox3 TextBox4
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我希望您能找到解决方案 在这里。这里的主要规则是处理 GridView 的 GridView1_RowDataBound 事件,您可以在其中控制行的外观。
I hope you can find solution here. The main rule here is handling GridView1_RowDataBound event for GridView where you can control rows appearence.
对于最后两列,您可以使用其中包含文本框的模板列,而对于第一列,您可以合并单元格,设置适当的 colspan/rowspan 连接 GridView 的 OnRowCreated 事件。
For the last two columns you can have template columns with textboxes inside them, while for the first you can merge cells setting appropriate colspan/rowspan wiring the OnRowCreated event of the GridView.