溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么遍歷PlaceHolder中的web控件

發(fā)布時(shí)間:2021-08-18 12:52:49 來源:億速云 閱讀:124 作者:chen 欄目:編程語言

這篇文章主要講解了“怎么遍歷PlaceHolder中的web控件”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“怎么遍歷PlaceHolder中的web控件”吧!

經(jīng)常用到使用PlaceHolder加載web用戶控件,遍歷控件取值就用到了。下面這個(gè)方法是遍歷所有控件,可以遍歷某一類控件(源碼是查找所有checkbox控件),遍歷所有類型控件,修改一下即可

using System;
using System.Collections;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
namespace SantGo.Bunli.Web
{
    public partial class Site1 : System.Web.UI.MasterPage
    {
        protected void Page_Load( object sender, EventArgs e )
        {
            if( !IsPostBack )
            {
                List<Control> checkBoxList = new List<Control>();
                FindSubControls( ContentPlaceHolder1, checkBoxList, new ControlMatchHander( CheckBoxMatchFunc ) );
                foreach ( CheckBox checkBox in checkBoxList )
                {
                    divDebug.InnerHtml += string.Format( "{0}, {1}<br />",
                        checkBox.ID,
                        checkBox.ClientID );
                }       
}
        }
        protected delegate bool ControlMatchHander( Control control );
        protected void FindSubControls( Control control, IList<Control> saveCollection, ControlMatchHander matchFunc )
        {
            if ( control.HasControls() )
            {
                foreach ( Control subControl in control.Controls )
                {
                    FindSubControls( subControl, saveCollection, matchFunc );
                }
            }
            else
            {
                if ( matchFunc( control ) )
                {
                    saveCollection.Add( control );
                }
            }
        }
        protected bool CheckBoxMatchFunc( Control control )
        {
            return control is CheckBox;
        }
    }
}

順便舉個(gè)例子說一下placeholder的用法。

第一步加載放置placeholder控件

<asp:PlaceHolder ID="ph" runat="server"></asp:PlaceHolder>

第二步加載自定義web控件,記住這個(gè)加載一定要放到if (!IsPostBack)的外面,否在在回傳的時(shí)候 你講取不到placeholder中的控件。

if (System.IO.File.Exists(Server.MapPath("test.ascx")))
    ph.Controls.Add(LoadControl("test.ascx"));

第三步,遍歷控件取值

//用上面的方法取控件,然后將取值

感謝各位的閱讀,以上就是“怎么遍歷PlaceHolder中的web控件”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)怎么遍歷PlaceHolder中的web控件這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI