簡體   English   中英

執行動作后,PlaceHolder中的動態控件丟失

[英]Dynamic Controls in PlaceHolder were lost after an action is performed

我在具有母版頁的Web表單中的代碼中有一個PlaceHolder

<asp:DropDownList ID="NoofSubjectList" runat="server"     
     AutoPostBack="true" OnSelectedIndexChanged="NoofSubject_Index_Changed">
                    <asp:ListItem>1</asp:ListItem>
                    <asp:ListItem>2</asp:ListItem>
                    <asp:ListItem>3</asp:ListItem>
                    <asp:ListItem>4</asp:ListItem>
                    <asp:ListItem>5</asp:ListItem>
                    <asp:ListItem>6</asp:ListItem>
                    <asp:ListItem>7</asp:ListItem>
                    <asp:ListItem>8</asp:ListItem>
                    <asp:ListItem>9</asp:ListItem>
                    <asp:ListItem>10</asp:ListItem>
                    <asp:ListItem>11</asp:ListItem>
                    <asp:ListItem>12</asp:ListItem>
</asp:DropDownList>
<asp:PlaceHolder ID="placeholder" runat="server" />    

基於從DropDownList(1 )中選擇的number( n ),我將為選定的n個數字動態創建兩組DropDownList(2,3) 這樣,第一個DropDownList將從數據庫中加載數據。 代碼如下所示,

protected void NoofSubject_Index_Changed(Object sender, EventArgs e)
    {
      int value = Convert.ToInt32(NoofSubjectList.SelectedItem.Text.ToString());
      DataSet ds1 = new DataSet();
      MySql.Data.MySqlClient.MySqlConnection mysqlConnection = new     
      MySql.Data.MySqlClient.MySqlConnection    
      ("Database=school;Server=localhost;UID=root;PWD=;");
      MySql.Data.MySqlClient.MySqlCommand mysqlCommand = new     
      MySql.Data.MySqlClient.MySqlCommand    
      ("SELECT Dept FROM tabledept WHERE Status='Active'", mysqlConnection);
      MySql.Data.MySqlClient.MySqlDataAdapter mysqlAdaptor = new      
      MySql.Data.MySqlClient.MySqlDataAdapter(mysqlCommand);
      mysqlAdaptor.Fill(ds1);
      for (int i = 0; i <= value - 1; i++)
      {
         DropDownList _SubList = new DropDownList();
         _SubList.ID = "SubList" + (i + 1);
         _SubList.Width= 75;
         DropDownList _DeptList = new DropDownList();
         _DeptList.ID = "DeptList" + (i + 1);              
         _DeptList.Width = 75;
         _DeptList.SelectedIndexChanged += DeptList_Index_Changed;
         Literal _spacer = new Literal();
         _spacer.Text = "<br />";
         Literal _spacerlbl = new Literal();
         _spacerlbl.Text = "&nbsp;&nbsp;";
         Label _Lbl = new Label();
         _Lbl.ID = "lbl_Subject" + i;
         _Lbl.Text = "Subject" + (i+1);
         Label _Lbl1 = new Label();
         _Lbl1.ID = "lbl_Dept" + i;
         _Lbl1.Text = "Department";
         _DeptList.DataSource = ds1;
         _DeptList.DataTextField = ds1.Tables[0].Columns["Dept"].ColumnName;
         _DeptList.DataValueField = ds1.Tables[0].Columns["Dept"].ColumnName;
         _DeptList.DataBind();
         _DeptList.AutoPostBack = true;
         placeholder.Controls.Add(_Lbl1);
         placeholder.Controls.Add(_spacerlbl);
         placeholder.Controls.Add(_DeptList);
         placeholder.Controls.Add(_spacerlbl);
         placeholder.Controls.Add(_Lbl);
         placeholder.Controls.Add(_SubList);
         placeholder.Controls.Add(_spacer);
      }
  }
protected void DeptList_Index_Changed(Object sender, EventArgs e)
  {
     \\Based on the selection in DropDownList2, a list will be loaded from a     
     \\database to DropDownList3      
  }    

根據從DropDownList(1)中選擇數字n觸發上述事件。 如果我從DropDownList(2)中選擇一項,則數據將從數據庫生成並添加到DropDownList(3)中 問題是當我嘗試從DropDownList(2)中選擇一個項目時,動態創建的控件會丟失。 如何克服這個問題?

我什至搜索了一下,發現我的代碼中缺少所謂的PostBack 但是我找不到相關資源來學習

我有一個鏈接,顯示了回發后創建控件的簡單示例。

使用C#創建動態文本框控件

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM