• 为什么DropDownList的SelectedIndexChanged事件触发不了


    写的还行,转来大家看看

    为什么DropDownList的SelectedIndexChanged事件触发不了?

    为什么设置了DropDownList的AutoPostBack="True"还是不能触发SelectedIndexChanged事件?(摘抄加上自己的一些错误经历) 收藏

    有人问

    (1)AutoPostBack="True"

    <asp:DropDownList id="DropDownList1" runat="server" AutoPostBack="True"></asp:DropDownList>

    (2)事件也注册了

    this.DropDownList1.SelectedIndexChanged +=

    new System.EventHandler(this.DropDownList1_SelectedIndexChanged);

    (3)事件也写了

    private void DropDownList1_SelectedIndexChanged(object sender, System.EventArgs e)

    { Response.Write(this.DropDownList1.SelectedItem); }

     

    怎么还是不能输出选定项?进行调试发现不能进入SelectedIndexChanged事件。

     

    其实还有一种可能,就是你为DropDownList的不同option设置了相同的value

     

    比如后台这么写:

    if(!IsPostBack)

    {

    for(int i=0;i<10;i++)

    this.DropDownList1.Items.Add(new ListItem(i.ToString(),"same_value")); }

     

    这样不会触发SelectedIndexChanged事件,修改成

    if(!IsPostBack) {

    for(int i=0;i<10;i++)

    this.DropDownList1.Items.Add(new ListItem(i.ToString(),i.ToString())); }

     

    一切些正常,根据msdn的解释:

    ListControl.SelectedIndexChanged 事件 当列表控件的选定项在信息发往服务器之间变化时发生

     

    这不同于js的onchange事件,改为

    if(!IsPostBack)

    {

    for(int i=0;i<10;i++)

    this.DropDownList1.Items.Add(new ListItem(i.ToString(),"same_value"));

    this.DropDownList1.Attributes.Add("onchange","alert('test');");

    }

    测试可知。

    上面文章摘自http://lovecherry.cnblogs.com/archive/2005/04/26/145705.html

     

    今天很奇怪按照上面的测试了,都没有问题。于是很郁闷,把dropdownlist抠出来测试,就可以了,于是我把整个页面单独拿出来,一块一块抠掉,然后测试。终于让我发现了问题的根源,呵呵,其实是自己太粗心照成的。

     

    由于页面中存在form标签,而我在母版里已经有form了。

    <form ID="form3" action="" method="post" name="form3"> </form>

    也就是说 存在2个form标签,导致ddl后台事件触发不了。

  • 相关阅读:
    java按照指定格式输出系统时间使用SimpleDateFormat方法
    java按照指定格式输出系统时间
    java打印系统时间
    java字符串截取指定下标位置的字符串
    java根据输入的字符串和字节数来截取,输出对应字节数的字符串
    java字符串根据正则表达式让单词首字母大写
    java根据#号截取字符串,使用Pattern的方法
    java数组冒泡排序
    Prometheus+Grafana监控平台搭建
    JMeter-setUp线程组实现用户先登录(跨线程中beanshell设置全局变量)
  • 原文地址:https://www.cnblogs.com/dsliang/p/3281444.html
Copyright © 2020-2023  润新知