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

溫馨提示×

溫馨提示×

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

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

ASP.NET中如何使用Multi-ListBox控件

發布時間:2021-07-15 15:26:28 來源:億速云 閱讀:136 作者:Leah 欄目:編程語言

ASP.NET中如何使用Multi-ListBox控件,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

在ASP.NET Multi-ListBox控件的生命周期中,我們主要需要解決用戶回發頁面的時候保留ListBox的數據源(因為我沒有采用復合控件的方式來開發)。因此,我們需要重寫控件的SaveViewState, LoadViewState二個方法。

ViewStates    1 protected override void LoadViewState  (object savedState)   2 {   3 if (savedState != null)   4 {   5 Triplet triplet = (Triplet)savedState;   6 base.LoadViewState(triplet.First);   7 Reflector.InvokeMethod(this.FirstListBox.  Items, "LoadViewState", new object[]   { triplet.Second });   8 Reflector.InvokeMethod(this.SecondListBox.Items,   "LoadViewState", new object[] { triplet.Third });   9 }   10 else   11 {   12 base.LoadViewState(null);   13 }   14 this._stateLoaded = true;   15 }   16   17 protected override object SaveViewState()   18 {   19 if (EnableViewState == false)   20 return null;   21 //啟用控件視圖狀態   22 object x = base.SaveViewState();   23 object y = Reflector.InvokeMethod  (FirstListBox.Items, "SaveViewState", null);   24 object z = Reflector.InvokeMethod  (SecondListBox.Items, "SaveViewState", null);   25 if ((x == null) && (y == null) && (z == null))   26 {   27 return null;   28 }   29 return new Triplet(x, y, z);   30 }

為了省事,我沒有自定義ListItem類,改為直接使用ListItemCollection來存儲數據。因為MS沒有提供ListItemCollection. SaveViewState和LoadViewState,我們必須采用反射的方式來調用這二個方法來保存數據。很讓人郁悶。每當到緊要關頭,就會發現MS寫的類,方法不是internal,就是sealed。無可奈何~當然,你也可以自己寫一個類來代替ListItem類.

我們在頁面上進行ListBox進行左移,右移的數據全部需要按一定的格式臨時存儲在HiddenField控件中,這樣我們可以通過繼承IPostBackDataHandler 接口中的LoadPostData方法獲取我們臨時存儲的數據,對ListBox的數據源進行添加,移除等操作。

IPostBackDataHandler    1 public bool LoadPostData  (string postDataKey, NameVal  ueCollection postCollection)   2 {   3 bool resultValueFlag = false;   4 //移除指定ListItem,  并需要添加了Left ListBox列表框中   5 string itemsRemoved =   postCollection[this.ClientID "_REMOVED"];   6 string[] itemsRemovedCol =   itemsRemoved.Split(',');   7 if (itemsRemovedCol != null)   8 {   9 if (itemsRemovedCol.Length 〉   0 && itemsRemovedCol[0] != "")   10 {   11 for (int i = 0; i 〈   itemsRemovedCol.Length; i )   12 {   13 string[] itemsRemoveItems =   itemsRemovedCol[i].Split('|');   14 ListItem item = this.SecondListBox.  Items.FindByValue(itemsRemoveItems[1]);   15 if (item != null)   16 {   17 this.SecondListBox.Items.Remove(item);   18 }   19 item = this.FirstListBox.Items.  FindByValue(itemsRemoveItems[1]);   20 if (item == null)   21 {   22   23 this.FirstListBox.Items.Add (new ListItem(itemsRemoveItems[0],   itemsRemoveItems[1]));   24 }   25 resultValueFlag = true;   26 }   27 }   28 }   29 //從客戶端添加指定的ListItem   30 string itemsAdded = postCollection  [this.ClientID "_ADDED"];   31 string[] itemsAddedCol = itemsAdded.  Split(',');   32 if (itemsAddedCol != null)   33 {   34 if (itemsAddedCol.Length 〉   0 && itemsAddedCol[0] != "")   35 {   36 int counter = -1;   37 for (int i = 0; i 〈   itemsAddedCol.Length; i )   38 {   39 string[] itemsAddItems =   itemsAddedCol[i].Split('|');   40 ListItem item = this.SecondListBox.  Items.FindByValue(itemsAddItems[1]);   41 if (item == null)   42 {   43 this.SecondListBox.Items.Add(new   ListItem(itemsAddItems[0],itemsAddItems[1]));   44 counter = 1;   45 }   46 item = this.FirstListBox.Items.  FindByValue(itemsAddItems[1]); 軟件開發網 www.mscto.com   47 if (item != null)   48 {   49 this.FirstListBox.Items.Remove(item);   50 }   51 }   52 resultValueFlag = counter 〉 -1 ? true : false;   53 }   54 }   55   56 //從客戶端中移除指定的ListItem   57 return resultValueFlag;   58 }   59   60 public void RaisePostDataChangedEvent()   61 {   62 //TODO::   63 }

一切就是這么簡單,就是SaveViewaState,LoadViewState,LoadPostData順序。后面二個是頁面回發的時候才會觸發。只要解決這里,***不過就是呈現控件而已。

如果在頁面中使用ASP.NET Multi-ListBox控件?

HTML    1〈asp:MultiListBox ID="ListBox1"  runat="server" Rows="10" Width="250px"   Height="200px" DataTextField="UserName"   DataValueField="UserID"   SelectionMode="Multiple" 〉   2 〈FirstListBox 〉  〈StyleSheet Width="100px" / 〉  〈/FirstListBox 〉   3 〈SecondListBox 〉  〈StyleSheet Width="100px" / 〉  〈/SecondListBox 〉   4 〈/asp:MultiListBox 〉   5   Submit   1protected void Page_Load  (object sender, EventArgs e)   2 {   3 if (Page.IsPostBack)   4 return;   5 ListBox1.FirstListBox.  DataSource = LoadData(1, 5);   6 ListBox1.SecondListBox.DataSource =   LoadData(6, 10);   7 ListBox1.DataBind();   8}   9protected void Button1_Click(object   sender, EventArgs e)   10 {   11 Response.Write("您SecondList選擇的值為:  〈br/ 〉");   12 foreach (ListItem item in this.ListBox1.  SecondListBox.Items)   13 {   14 Response.Write(item.Text ":" item.Value   "〈br/ 〉");   15 }   16 Response.Write("您FirstList選擇的值為:  〈br/ 〉");   17 foreach (ListItem item in this.ListBox1.  FirstListBox.Items)   18 {   19 Response.Write(item.Text ":" item.Value   "〈br/ 〉");   20 }   21 }

關于ASP.NET中如何使用Multi-ListBox控件問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

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

AI

陈巴尔虎旗| 即墨市| 宁化县| 江津市| 莎车县| 长春市| 永靖县| 南涧| 内丘县| 浦县| 龙口市| 高尔夫| 卢氏县| 逊克县| 华阴市| 长葛市| 门源| 台江县| 石嘴山市| 荆州市| 都匀市| 芜湖县| 唐河县| 正宁县| 修武县| 洪湖市| 南雄市| 茂名市| 田阳县| 井研县| 仁布县| 巧家县| 祁阳县| 安丘市| 铜川市| 策勒县| 松原市| 石台县| 石家庄市| 闽清县| 达州市|