zoukankan      html  css  js  c++  java
  • 代码片段

    1.grid判断查看哪一行的CheckBox被选中      

    foreach(GridViewRow row in this.StudentGridView.Rows)
            {
                Control ctrl = row.FindControl("CheckBox");
             
                    if ((ctrl as CheckBox).Checked)
                    {
                        TableCellCollection cell = row.Cells;
                        string studentCode = cell[1].Text;
                     }                
             }

    2.递归

    // 清空控件内容
    private void ClearText(Control ctr) {
        for (int i = 0; i < ctr.Controls.Count; i++) {
            // 若当前控件内部包含其他控件则继续遍历
            if (ctr.Controls[i].Controls.Count > 0) {
                ClearText(ctr.Controls[i]);
            } else {
                // 判断控件类型,做相应处理
                if (ctr.Controls[i] is TextBox) {
                    TextBox txt = null;
                    txt = ctr.Controls[i] as TextBox;
                    txt.Text = string.Empty;
                } else if (ctr.Controls[i] is ComboBox) {
                    ComboBox cbo = null;
                    cbo = ctr.Controls[i] as ComboBox;
                    cbo.Text = string.Empty;
                }
            }
        }
    }
  • 相关阅读:
    HDU 1717 小数化分数2(最大公约数)
    C#计数器
    C#计数器
    c#计算器
    c#计算器
    PHP 错误与异常 笔记与总结(18 )页面重定向实现
    想使用 MongoDB ,你应该了解这8个方面!
    大数据代表未来,投资力度增强
    统计学和数据挖掘的异同探讨
    统计学和数据挖掘的异同探讨
  • 原文地址:https://www.cnblogs.com/dodui/p/2369816.html
Copyright © 2011-2022 走看看