zoukankan      html  css  js  c++  java
  • 取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;
            }
  • 相关阅读:
    php下的jsonp使用实例
    jquery ajax jsonp跨域调用实例代码
    js/ajax跨越访问-jsonp的原理和实例(javascript和jquery实现代码)
    jsonp实现跨域访问
    jsonp调用实例
    Jsonp和java操作例子
    JSONP实例
    跨平台移动开发工具:PhoneGap与Titanium全方位比拼
    混合开发模式下主流移动开发平台分析
    企业移动信息化应用开发模式选型指南
  • 原文地址:https://www.cnblogs.com/RuiLei/p/421474.html
Copyright © 2011-2022 走看看