htmltable 2
代码如下:
<script runat="server">Sub submit(sender As Object, e As EventArgs)
dim i,j
table1.BGColor="yellow"
table1.BorderColor="red"
for i=0 To table1.Rows.Count-1
for j=0 To table1.Rows(i).Cells.Count-1
table1.Rows(i).Cells(j).InnerHtml="Row " & i
next
next
End Sub
</script>
<!DOCTYPE html>
<html>
<body>
<form runat="server">
<table id="table1" border="1" runat="server">
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
</tr>
<tr>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>
</table>
<br>
<input type="button" value="Change Contents" OnServerClick="submit" runat="server"/>
</form>
</body>
</html>
运行结果:
相关文章
- ASP.NET Web Pages 对象
- ASP.NET MVC 模型
- ASP.NET Hashtable
- ASP.NET 导航
- ASP.NET ListBox 控件
- ASP.NET RadioButtonList 控件
- ASP.NET BulletedList 控件
- ASP.NET HTML 控件 DataList
- ASP.NET HTML 控件 用 的DataList
- C# 实例 可重复使用的头部和底部
- VB 实例 If Else 条件
- htmlanchor
- ASP.NET BorderStyle 属性
- ASP.NET CssClass 属性
- ASP.NET CheckBoxList RepeatColumns 属性
- ASP.NET HyperLink ImageUrl 属性
- ASP.NET Image ImageAlign 属性
- ASP.NET RadioButtonList RepeatColumns 属性
- ASP.NET BulletedList DisplayMode 属性
- ASP.NET TableCell ColumnSpan 属性