[转]C# 面试题解析-请遍历页面上所有的TextBox

系统 1555 0

请遍历页面上所有的TextBox控件并给它赋值为string.Empty

网上能查到的一些解法的问题

第一种,遍历this.Controls

代码如下:

<!--<br /> <br /> Code highlighting produced by Actipro CodeHighlighter (freeware)<br /> http://www.CodeHighlighter.com/<br /> <br /> --> foreach  (Control ctl  in   this .Controls)
if  ( typeof (ctl) == typeof (TextBox)) .


这样并不能遍历整个页面中的TextBox

  1. this.Controls只是包含了Page根一级的control,这样次级的control就都没有遍历
  2. TextBox一般会放在form里面,遍历this.Controls只会访问form control,而不会访问form的子contorl,其中的TextBox

第二种,遍历Controls[1]

代码如下:

<!--<br /> <br /> Code highlighting produced by Actipro CodeHighlighter (freeware)<br /> http://www.CodeHighlighter.com/<br /> <br /> --> for ( int    i = 0 ;i < inPage.Controls[ 1 ].Controls.Count;i ++ )  
  
{  
  
if (inPage.Controls[ 1 ].Controls[i].GetType().ToString() == " System.Web.UI.WebControls.TextBox " )  


同样的情况:

  1. 这种代码没有通用性,你怎么就知道Control[1]正是你要遍历的collection
  2. 次级的control都没有遍历

我认为正确的做法:使用递归对页面control树进行完全遍历,并对每一个control进行处理。递归算法如下:

  1. 传入page的this.Colletions
  2. 对每一个contorl,如果contorl没有包含子control,进行处理。
  3. 如果包含,递归调用这个函数处理子control

代码:

<!--<br /> <br /> Code highlighting produced by Actipro CodeHighlighter (freeware)<br /> http://www.CodeHighlighter.com/<br /> <br /> -->      private   void  InitialControl(ControlCollection objControlCollection)
    
{
        
foreach  (System.Web.UI.Control objControl  in  objControlCollection)
        
{
            
if  (objControl.HasControls())
            
{
                InitialControl(objControl.Controls);
            }

            
else
            
{
                
if  (objControl  is  System.Web.UI.WebControls.TextBox)
                
{
                    ((TextBox)objControl).Text 
=  String.Empty;
                }

            }

        }

    }

[转]C# 面试题解析-请遍历页面上所有的TextBox控件并给它赋值为string.Empty


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论