91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

怎么遍歷PlaceHolder中的web控件

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

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

經常用到使用PlaceHolder加載web用戶控件,遍歷控件取值就用到了。下面這個方法是遍歷所有控件,可以遍歷某一類控件(源碼是查找所有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;
        }
    }
}

順便舉個例子說一下placeholder的用法。

第一步加載放置placeholder控件

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

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

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

第三步,遍歷控件取值

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

感謝各位的閱讀,以上就是“怎么遍歷PlaceHolder中的web控件”的內容了,經過本文的學習后,相信大家對怎么遍歷PlaceHolder中的web控件這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江都市| 肇庆市| 福州市| 新津县| 龙门县| 霸州市| 东方市| 义马市| 镇坪县| 泽州县| 增城市| 兰州市| 寿阳县| 濉溪县| 荆门市| 宝鸡市| 连州市| 大方县| 同德县| 神池县| 张家港市| 辽中县| 玉环县| 乌兰察布市| 绥滨县| 二手房| 雅安市| 惠安县| 新河县| 德格县| 西乌珠穆沁旗| 根河市| 惠州市| 永康市| 祁连县| 靖远县| 无棣县| 北京市| 永安市| 应城市| 龙里县|