自定义table标签的htmlhelper
意思是返回html时为
<table>
<thead>
<tr>
<th>姓名 </th><th>性别</th><th> 年龄</th>
</tr>
</thead>
<tbody>
<td>张三</td><td>男</td><td20</td>
</tbody>
</table>形式编译出来
我也是今天第一次写这个东西,菜鸟求大神们帮助一下