asp.net 做到几张比较复杂的表,求解如何做
发布网友
发布时间:2024-10-03 19:12
我来回答
共3个回答
热心网友
时间:2024-11-25 15:49
关于复杂表的制作
可以利用table 的列跨行,行跨行来做。
例如如下
<html>
<body>
<h4>横跨两列的单元格:</h4>
<table border="1">
<tr>
<th>姓名</th>
<th colspan="2">电话</th>
</tr>
<tr>
<td>Bill Gates</td>
<td>555 77 854</td>
<td>555 77 855</td>
</tr>
</table>
<h4>横跨两行的单元格:</h4>
<table border="1">
<tr>
<th>姓名</th>
<td>Bill Gates</td>
</tr>
<tr>
<th rowspan="2">电话</th>
<td>555 77 854</td>
</tr>
<tr>
<td>555 77 855</td>
</tr>
</table>
</body>
</html>
参考
http://www.w3school.com.cn/tags/tag_table.asp
热心网友
时间:2024-11-25 15:50
以前我做这个 是分两部份做的。
两个TABLE
左边一个TABLE 来存放 件次啊 这些。 右边的就用 reperter来绑定数据。
热心网友
时间:2024-11-25 15:50
用table画好,挨个绑定到td数据不就行了么? 你想用gridview做?有点难度,
建议搜索 gridview 不规则表格
http://wenku.baidu.com/view/8c2830bcf121dd36a32d8215.html 我这里有个例子 你可以看一下 有点麻烦 对于新手是有难度的追问嗯嗯 我看一下