生成表格
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>1行2列</td><td>1行3列</td></tr>")
sb.AppendLine("<tr><td>2行1列</td><td>2行2列</td><td>2行3列</td></tr>")
sb.AppendLine("<tr><td>3行1列</td><td>3行2列</td><td>3行3列</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