会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
成了过河卒
博客园
首页
新随笔
联系
订阅
管理
HtmlTableRowCollection.GetEnumerator 方法的C#例子
下面的代码示例演示如何使用 GetEnumerator 方法创建 System.Collections.IEnumerator 对象。然后循环访问 System.Collections.IEnumerator 对象以显示 HtmlTableRowCollection 集合的内容。
view plaincopy to clipboardprint
?
<%
@ Page Language
=
"
C#
"
AutoEventWireup
=
"
True
"
%>
<
SCRIPT runat
=
"
server
"
>
void
Button_Click(Object sender, EventArgs e)
{
HtmlTableRow current_row;
//
Create an IEnumerator enumerator.
IEnumerator myEnum
=
Table1.Rows.GetEnumerator();
Span1.InnerText
=
"
The items in the rows of the table are:
"
;
//
Iterate through the IEnumerator and display its contents.
while
(myEnum.MoveNext())
{
current_row
=
(HtmlTableRow)myEnum.Current;
Span1.InnerText
=
Span1.InnerText
+
"
"
+
current_row.Cells[
0
].InnerText
+
"
"
+
current_row.Cells[
1
].InnerText;
}
}
</
SCRIPT
>
<
HTML
>
<
HEAD
>
<
FORM runat
=
"
server
"
>
<
H3
>
HtmlTableRowCollection Example
</
H3
>
<
TABLE id
=
Table1 borderColor
=
black border
=
1
runat
=
"
server
"
><
TBODY
><
TR
><
TD
>
Cell
1
</
TD
><
TD
>
Cell
2
</
TD
></
TR
><
TR
><
TD
>
Cell
3
</
TD
><
TD
>
Cell
4
</
TD
></
TR
></
TBODY
></
TABLE
>
<
BR
><
BR
>
<
INPUT type
=
button value
=
"
Display row contents in the table
"
runat
=
"
server
"
onserverclick
=
"
Button_Click
"
>
<
BR
><
BR
>
<
SPAN id
=
Span1 runat
=
"
server
"
>
posted @
2007-08-11 13:54
过河卒A
阅读(
625
) 评论(
0
)
收藏
举报
刷新页面
返回顶部
公告