zoukankan      html  css  js  c++  java
  • 关于DataList的嵌套 和(ItemCommand)事件的问题

        找到嵌套的DataList(注:因为第一行为标题,所以第一次行循环找不到DataList 所以才要判断if (DataListDepartment != null))
      protected void score_ItemDataBound(object sender, DataListItemEventArgs e)
    {
           DataList DataListDepartment = e.Item.FindControl("DataListDepartment") as DataList;
                if (DataListDepartment != null)
                {
                    DataTable DepartmentSingalInformation = new DataTable();
                    SqlDataAdapter sda = new SqlDataAdapter("Article_DepartmentSingalInformation", myConnection);
                    sda.SelectCommand.CommandType = CommandType.StoredProcedure;
                    sda.SelectCommand.Parameters.Add(new SqlParameter("@articleID", articleID));
                    sda.SelectCommand.Parameters.Add(new SqlParameter("@CreateDepartment", Convert.ToInt32(DepartmentID.Text)));
                    sda.Fill(DepartmentSingalInformation);
                    DataListDepartment.DataSource = DepartmentSingalInformation;
                    DataListDepartment.DataBind();
                }
    }

    另外在ItemCommand事件中 找到一行和gridview的区别是(GridViewRow WorkGuideGridViewRow = (GridViewRow)((Control)e.CommandSource).Parent.Parent)
            protected void score_ItemCommand(object source, DataListCommandEventArgs e)
            {
                DataListItem DataListItemRow = (DataListItem)((Control)e.CommandSource).Parent;
                Label DepartmentID = DataListItemRow.FindControl("DepartmentID") as Label;
                Label DepartmentName = DataListItemRow.FindControl("DepartmentName") as Label;
                if (e.CommandArgument == "MoreInformation")
                {
     
                }
            }

  • 相关阅读:
    20165312 我期望的师生关系
    zookeeper04---ZAB协议
    zookeeper03-集群搭建
    zookeeper02
    Zookeeper01
    防止重复提交
    手动抛出异常事务回滚问题
    redis-07主从复制
    redis06-事务
    Redis-05持久化
  • 原文地址:https://www.cnblogs.com/cuihongyu3503319/p/527188.html
Copyright © 2011-2022 走看看