遍历页面控件的几种方法

方法一:javascript法

function btnClear()
{
for(i=0;i{
e=document.forms[0].elements[i];
if(e.type=='text'||e.type=='textarea')
{
e.value="";
}
}
return false;
}

在Onclick OnFocus OnLoad等事件中引用就行


方法二:Foreach遍历

foreach(Control ctl in this.Page.Controls[1].Controls)
{

if(ctl.GetType() == typeof(TextBox))
{
TextBox t = (TextBox) ctl;
t.Text = string.Empty;

}


方法三:
#region 清空指定页面上所有的控件内容,public static void ClearAllContent()
///
/// 清空指定页面上所有的控件内容,包括TextBox,CheckBox,CheckBoxList,RadioButton,RadioButtonList。但是不清
/// 除如ListBox,DropDownList,因为这样的控件值对当前页面来说还可以用,一般这些控件里都是保存的字典数据。
/// Author:Kevin
/// 日期:2004-12-02
///

/// 指定的页面
public static void ClearAllContent(System.Web.UI.Control page)
{
int nPageControls = page.Controls.Count;
for (int i = 0; i < nPageControls; i++)
{
foreach (System.Web.UI.Control control in page.Controls[i].Controls)
{
if (control.HasControls())
{
ClearAllText(control);
}
else
{
if (control is TextBox)
(control as TextBox).Text = "";

if (control is CheckBox)
(control as CheckBox).Checked = false;

if (control is RadioButtonList)
(control as RadioButtonList).SelectedIndex = -1;

if (control is RadioButton)
(control as RadioButton).Checked = false;

if (control is CheckBoxList)
{
foreach (ListItem item in (control as CheckBoxList).Items)
{
item.Selected = false;
}
}
}//if..else
}//foreach
}//for
}
#endregion


方法四:

建立一个类,用于存放那些TextBox的name和value ,代码如下:
Public Class UtilityObj
Private _name As String
    Private _value As String
    Public Sub New(ByVal Name As String, ByVal Value As String)
        _name = Name
        _value = Value
    End Sub                                                          
    Public Property Name() As String
        Get
            Return _name
        End Get
        Set(ByVal Value As String)
            _name = Name
        End Set
    End Property
    Public Property Value() As String
Get
            Return (_value)
        End Get
        Set(ByVal Value As String)
            _value = Value
        End Set
    End Property
End Class
    这个类包含两个属性:"name" 和 "value",再定义一个公有的Arraylist(oArraylist),用于存储数据。如图:
    
  要实现遍历ASP.NET页面所有的控件,我们还需要定义一个主要的方法。这个方法接收一个Control类型的参数,如果这个参数为textbox,则存储它的  name 和 value。
      代码如下:
Public Sub LoopingControls(ByVal oControl As Control)
        Dim frmCtrl As Control
        oArrayList = New ArrayList
        For Each frmCtrl In oControl.Controls
            If TypeOf frmCtrl Is TextBox Then
                oArrayList.Add(New UtilityObj(frmCtrl.ID, DirectCast(frmCtrl, TextBox).Text))
            End If
            If frmCtrl.HasControls Then
                LoopingControls(frmCtrl)
            End If
        Next
    End Sub
      使用上面方法来实现遍历页面所有的控件
LoopingControls(Page)
        DataGrid1.DataSource = oArrayList
        DataGrid1.DataBind()


遍历CheckBoxList
1.
.Selected属性:为布尔型,判定组件中的检查框是否被选中。
for ( int i = 0 ; i < ChkList . Items . Count ; i++ )
{
if( ChkList . Items [ i ] . Selected )
{
lblResult . Text += ChkList . Items [ i ] .Text + " <br > " ;
}
}
2.
ChkList . Items [ i ].checked

[本日志由 admin 于 2008-08-16 03:12 PM 编辑]
上一篇: 遍历Label 和遍历 DropDownList
下一篇: WebService学习笔记(1)
文章来自: 本站原创
引用通告: 查看所有引用 | 我要引用此文章
Tags:
相关日志:
评论: 0 | 引用: 0 | 查看次数: 13092
发表评论
昵 称:
密 码: 游客发言不需要密码.
邮 箱: 邮件地址支持Gravatar头像,邮箱地址不会公开.
网 址: 输入网址便于回访.
内 容:
验证码:
选 项:
虽然发表评论不用注册,但是为了保护您的发言权,建议您注册帐号.
字数限制 30 字 | UBB代码 关闭 | [img]标签 关闭