生成表格

HTML中的表、行、单元格的开始标签分别为<table>、<tr>、<td>,对应的结束标签分别为</table>、</tr>、</td>。

我们将HttpRequest事件代码代码设置为:

Select Case e.Path
    Case "table.htm"
        Dim sb As New StringBuilder
        sb.AppendLine("<table border='1'>")
        sb.AppendLine(
"<caption>
标题</caption>")
        sb.AppendLine(
"<tr><td>1
1</td><td>12</td><td>13</td></tr>")
        sb.AppendLine(
"<tr><td>2
1</td><td>22</td><td>23</td></tr>")
        sb.AppendLine(
"<tr><td>3
1</td><td>32</td><td>33</td></tr>")
        sb.AppendLine("</table>")
        e.WriteString(sb.ToString)

End
Select

在浏览器中显示的结果为:

有关HTML表格的更多知识,请访问:

http://www.w3school.com.cn/html/html_tables.asp

http://www.w3school.com.cn/css/css_table.asp

 

 


本页地址:http://www.foxtable.com/mobilehelp/topics/0031.htm