由于初始化判断出错导致每次传到服务器的时候会初始化一次,这就导致每次获取DropDownList的SelectIndex的时候只能是0
1.想要DropDownList自动提交必须设置AutoPostBack=”true”属性,下面是代码:
代码如下:
AutoPostBack=”True” onselectedindexchanged=”ddlNameList_SelectedIndexChanged” >
2.在服务端处理的时候,尤其是初始化DropDownList的时候,没注意结果写错了,下面是错误代码:
代码如下:
protected void Page_Load(object sender, EventArgs e)
{
{
if (!Page.IsCallBack)
{
this.fillIntoNameList();
}
}
这个初始化判断出错了,每次传到服务器的时候会初始化一次,这就导致每次获取DropDownList的SelectIndex的时候只能是0
正确代码,如下:
代码如下:
protected void Page_Load(object sender, EventArgs e)
{
{
if (!Page.IsPostBa来源gao($daima.com搞@代@#码网ck)
{
this.fillIntoNameList();
}
}
以上就是DropDownList获取的SelectIndex一直为0的问题的详细内容,更多请关注gaodaima搞代码网其它相关文章!