zoukankan      html  css  js  c++  java
  • datatable.select distinct

    Code

    datatable.select

        public DataTable FillTable(string M_where, DataTable m_table)
        {
            DataTable _temp = m_table.Clone();
            DataRow[] _row = m_table.Select(M_where);

            foreach (DataRow _r in _row)
            {

                _temp.Rows.Add(_r.ItemArray);
            }
            return _temp;
        }

    ViewState["BackUrl"] = Request.UrlReferrer.ToString();

        protected void Button1_Click1(object sender, EventArgs e)
        {
            if (ViewState["BackUrl"] != null)
            {
                Response.Redirect(ViewState["BackUrl"].ToString());
            }
        }

  • 相关阅读:
    OpenResty 作者章亦春访谈实录
    linux 下C语言学习路线
    swift 集合类型
    不懂技术的人不要对懂技术的人说这很容易实现
    java学习笔记7--抽象类与抽象方法
    java学习笔记6--类的继承、Object类
    python练习题
    python的里字典和列表
    python里list列表,tuple元组内部功能介绍
    python里float和long内部功能及字符串str介绍
  • 原文地址:https://www.cnblogs.com/legend_sun/p/1408934.html
Copyright © 2011-2022 走看看