您好,登錄后才能下訂單哦!
這篇文章主要講解了“怎么遍歷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控件這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。