• 取HyperLink中的值


     public ArrayList judgeIsChecked()
            {
                foreach (GridViewRow row in this.gvUserInfo.Rows)
                {
                    CheckBox checkBox = (CheckBox)row.FindControl(DELFLAG);
                    //被选中的记录处理
                    if (checkBox.Checked)
                    {
                        for (int j = 1; j < this.gvUserInfo.Columns.Count; j++)
                        {
                            //HeaderText==姓名
                            string nameCellInfo = this.gvUserInfo.Columns[1].HeaderText.ToString();
                            //存放Cell中的值
                            string cellInfo = EMPTYSTRING;
                            if (nameCellInfo.Equals(this.gvUserInfo.Columns[j].HeaderText.ToString()))
                            {
                                //取HyperLink中的值
                                HyperLink hlValue = (HyperLink)row.Cells[1].Controls[0];
                                cellInfo = nameCellInfo + COLON + hlValue.Text;
                            }
                            else
                            {
                                cellInfo = this.gvUserInfo.Columns[j].HeaderText.ToString() + COLON + gvUserInfo.Rows[i].Cells[j].Text;
                            }
                            newArrayList.Add(cellInfo.Trim());
                        }
                    }
                    i++;
                }
                return newArrayList;
            }
  • 相关阅读:
    (第七周)评论alpha发布
    (第六周)工作总结
    (第六周)团队项目6
    (第六周)团队项目5
    (第六周)团队项目4
    (第六周)团队项目燃尽图
    (第六周)团队项目3
    (第六周)课上Scrum站立会议演示
    Java第二次作业第五题
    Java第二次作业第四题
  • 原文地址:https://www.cnblogs.com/RuiLei/p/421474.html
Copyright © 2020-2023  润新知