1.想要DropDownList自動提交必須設(shè)置AutoPostBack="true"屬性,下面是代碼:
代碼如下:
<asp:DropDownList ID="ddlNameList" runat="Server" Height="30"
AutoPostBack="True" onselectedindexchanged="ddlNameList_SelectedIndexChanged" ></asp:DropDownList>
2.在服務(wù)端處理的時候,尤其是初始化DropDownList的時候,沒注意結(jié)果寫錯了,下面是錯誤代碼:
代碼如下:
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsCallBack)
{
this.fillIntoNameList();
}
}
這個初始化判斷出錯了,每次傳到服務(wù)器的時候會初始化一次,這就導(dǎo)致每次獲取DropDownList的SelectIndex的時候只能是0
正確代碼,如下:
代碼如下:
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
this.fillIntoNameList();
}
}
更多信息請查看IT技術(shù)專欄