zoukankan      html  css  js  c++  java
  • 怎么触发DataGrid模板列中控件的事件?

     转自互联网

    有很多网友遇到这样的问题:在DataGrid模板列中的按钮可以触发ItemCommand事件但是怎么触发其他事件?(比如放置DropDownList怎么触发SelectedIndexChange事件?……)
    按照
    http://www.cnblogs.com/lovecherry/archive/2005/03/25/125525.html我们进行一下修改:
    在模板列中增加一个DropDownList

    <asp:TemplateColumn HeaderText="学院">
          <ItemTemplate>
           <asp:DropDownList ID="dep2" Runat="server" AutoPostBack="True" OnSelectedIndexChanged="DropDownList2_SelectedIndexChanged"></asp:DropDownList>
          </ItemTemplate>
          <EditItemTemplate>
           <asp:DropDownList ID="dep" Runat="server"></asp:DropDownList>
          </EditItemTemplate>
    </asp:TemplateColumn>

    在前台直接加上事件DropDownList2_SelectedIndexChanged

    然后在后台添加事件就可以了

    protected void DropDownList2_SelectedIndexChanged(object sender, System.EventArgs e)
      {
       Response.Write(((DropDownList)sender).SelectedItem);
      }

    注意,事件不能是private的,这里的sender就是这个下拉框,类型转换一下就能使用了

  • 相关阅读:
    JAVA程序的运行机制
    DOS命令
    垃圾回收
    eureka的简单使用
    各微服务之间的调用
    各层调用关系与注解使用
    bean管理xml方式
    Lombok介绍和使用
    java特性 JDK JRE JVM
    git克隆 文件夹
  • 原文地址:https://www.cnblogs.com/allanyang/p/357598.html
Copyright © 2011-2022 走看看