国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

遍歷獲取ASP.NET頁面控件的名稱及值

2024-07-10 13:13:11
字體:
來源:轉載
供稿:網友

逛csdn的時候碰見有人在求助這個問題,特分享一下經驗。
如果直接用Page.Control 獲取的到只是最頂層的頁面元素,而真正的拖拉放上去的文本框或Label之類的控件,還隱藏在這些頂層頁面元素的里面,所以需要再次遍歷。
函數及使用方法如下,結果保存在這里選擇了HashTable的方式。

protected void Page_Load(object sender, EventArgs e)    {        getAllControlValue(this);    }    Hashtable getAllControlValue( object PageOrUserControl )    {        Hashtable rtn = new Hashtable();        foreach (Control ctr in (PageOrUserControl as Page).Controls)        {            getControlValue(ctr, rtn);        }        return rtn;    }    void getControlValue(Control ctrIn,Hashtable ht)    {        foreach (Control ctr in ctrIn.Controls)        {            Type controlType = ctr.GetType();            switch (controlType.ToString())            {                case "System.Web.UI.WebControls.TextBox":                    TextBox controlTextBoxObj = (TextBox)ctr;                    string controlTextBoxName = controlTextBoxObj.ID;                    string controlTextBoxValue = controlTextBoxObj.Text;                    ht.Add(controlTextBoxName, controlTextBoxValue);                    break;                case "System.Web.UI.WebControls.Label":                    Label controlLabelObj = (Label)ctr;                    string controlLabelName = controlLabelObj.ID;                    string controlLabelValue = controlLabelObj.Text;                    ht.Add(controlLabelName, controlLabelValue);                    break;                //case "其他類型":                //    其它類型 controlTextBoxObj = (其它類型)ctr;                //    string controlTextBoxName = controlTextBoxObj.ID;                //    string controlTextBoxValue = controlTextBoxObj.Text;                //    ht.Add(controlTextBoxName, controlTextBoxValue);                //    break;                default:                    break;            }        }    }
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 太仓市| 瑞丽市| 兴海县| 衡山县| 任丘市| 古交市| 永州市| 新乐市| 旬邑县| 陆良县| 浦北县| 郓城县| 广灵县| 林周县| 京山县| 闽侯县| 偃师市| 大余县| 黑龙江省| 琼结县| 榕江县| 高密市| 霸州市| 兴文县| 邹平县| 大悟县| 和硕县| 肇州县| 广汉市| 自贡市| 陕西省| 灌阳县| 桐城市| 同德县| 寿宁县| 榆林市| 台中市| 高平市| 横峰县| 宁远县| 舟山市|