C#winform⽹页合并表格  在窗⼝添加⼀个webBrowser命名为webBrowser1,添加⼀个button按钮,在按钮事件中添加
webBrowser1.Navigate("E:/table.html");
webBrowser1.ObjectForScripting=this;
就可以在form窗⼝中打开table⽹页了。
table.html
<html">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>⽆标题⽂档</title>
<style type="text/css">
.juzhong {
text-align: center;
}
</style>
</head>
<body>
<table width="100%" border="1">
<tr>
<th colspan="2" scope="col">性别</th>
<th rowspan="2" scope="col">年龄</th>
<th rowspan="2" scope="col">班级</th>
</tr>
<tr>
<td class="juzhong">男</td>
<td class="juzhong">⼥</td>
</tr>
<tr>
<td colspan="2"> </td>
<td> </td>
<td> </td>
</tr>
</table>
</body>网页colspan
</html>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。