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>
運(yùn)行結(jié)果:
相關(guān)文章
- ASP.NET Web Pages 對(duì)象
- ASP.NET MVC 模型
- ASP.NET Hashtable
- ASP.NET 導(dǎo)航
- ASP.NET ListBox 控件
- ASP.NET RadioButtonList 控件
- ASP.NET BulletedList 控件
- ASP.NET HTML 控件 DataList
- ASP.NET HTML 控件 用 的DataList
- C# 實(shí)例 可重復(fù)使用的頭部和底部
- VB 實(shí)例 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 屬性