码迷,mamicode.com
首页 > 其他好文 > 详细

DropDownList获取的SelectIndex一直为0

时间:2014-06-29 07:40:17      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   strong   

1.想要DropDownList自动提交必须设置AutoPostBack="true"属性,下面是代码:

<asp:DropDownList ID="ddlNameList" runat="Server" Height="30" 
            AutoPostBack="True" onselectedindexchanged="ddlNameList_SelectedIndexChanged" ></asp:DropDownList>


2.在服务端处理的时候,尤其是初始化DropDownList的时候,没注意结果写错了,下面是错误代码:

bubuko.com,布布扣
protected void Page_Load(object sender, EventArgs e)
    {
       
        if (!Page.IsCallBack)
        {
            this.fillIntoNameList();
        }
    }
bubuko.com,布布扣

 这个初始化判断出错了,每次传到服务器的时候会初始化一次,这就导致每次获取DropDownList的SelectIndex的时候只能是0

正确代码,如下:

bubuko.com,布布扣
protected void Page_Load(object sender, EventArgs e)
    {
       
        if (!Page.IsPostBack)
        {
            this.fillIntoNameList();
        }
    }
bubuko.com,布布扣

 

 

DropDownList获取的SelectIndex一直为0,布布扣,bubuko.com

DropDownList获取的SelectIndex一直为0

标签:style   blog   http   java   color   strong   

原文地址:http://www.cnblogs.com/aocshallo/p/3770117.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!