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")
                {
     
                }
            }

  • 相关阅读:
    RMI笔记
    java 本地方法(JNI)
    java 的SPI机制
    eclipse中的 Compiler compliance level含义
    初步理解JNDI
    大数据5.1
    大数据4.1
    需要攻破的知识点
    大数据4.2 -- hive数据库
    大数据---单词释义
  • 原文地址:https://www.cnblogs.com/cuihongyu3503319/p/527188.html
Copyright © 2011-2022 走看看