您好,登錄后才能下訂單哦!
本篇文章為大家展示了Asp.net中怎么清空控件值,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
當頁面內有許多控件,我們在需要清空其值的時候,一個個清空未免太麻煩。于是寫了這么一個方法,可以自定義清空控件的類型,靈活應對業務需求。
/// <summary>重置方法控件類型枚舉</summary> /// <remarks>求知域http://www.qqextra.com 2012-12-28</remarks> public enum ReSetType { /// <summary> /// TextBox /// </summary> TXT, /// <summary> /// DropDownList /// </summary> DDL, /// <summary> /// RadioButtonList /// </summary> RBL, /// <summary> /// 全部ReSetType類型 /// </summary> ALL } /// <summary>重置控件的值</summary> /// <remarks>求知域http://www.qqextra.com 2012-12-28</remarks> /// <param name="control">this</param> /// <param name="rst">ReSetType.ALL為清空ReSetType枚舉中包含的所有控件類型</param> public static void ReSet(Control control, params ReSetType[] rst) { bool blTxt = false; bool blDdl = false; bool blRbl = false; foreach (ReSetType type in rst) { if (type == ReSetType.ALL) { blTxt = true; blDdl = true; blRbl = true; break; } else if (type == ReSetType.TXT) blTxt = true; else if (type == ReSetType.DDL) blDdl = true; else if (type == ReSetType.RBL) blRbl = true; } foreach (Control c in control.Controls) { //文本框 if (c is TextBox && blTxt == true) { ((TextBox)c).Text = ""; } else //下拉列表 if (c is DropDownList && blDdl == true) { DropDownList ddl = (DropDownList)c; if (ddl.Items.Count > 0) { ddl.SelectedIndex = 0; } } else //單選按鈕列表 if (c is RadioButtonList && blRbl == true) { ((RadioButtonList)c).SelectedIndex = -1; } else if (c.HasControls()) { //遞歸 ReSet(c, rst); } } }
上述內容就是Asp.net中怎么清空控件值,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。