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

  • 相关阅读:
    1 < 2 < 3为true, 3 > 2 > 1为false
    我的第五代选择器Icarus
    浮动不换行
    教你游泳,不会游的看了包你学会!!! 分享
    node.js 一个简单的页面输出
    天将降大任于斯人也,必先苦其心志,劳其筋骨,饿其体肤,空乏其身,行拂乱其所为,所以动心忍性,增益其所不能
    setTimeout和setInterval的使用
    JS window.open()属性
    车牌识别及验证码识别的一般思路
    苹果开发者账号注册流程
  • 原文地址:https://www.cnblogs.com/cuihongyu3503319/p/527188.html
Copyright © 2011-2022 走看看