zoukankan      html  css  js  c++  java
  • Hashtable与DataTable,ArrayList的简单应用(转自cnblogs)


     1 public void InitData()
     2        {
     3            string sql = @"select  * from orders";
     4
     5            SqlConnection con = new SqlConnection("server=.;uid=sa;pwd=sa;database=NorthWind");
     6            SqlDataAdapter sda = new SqlDataAdapter(sql, con);
     7            DataTable dt = new DataTable();
     8            sda.Fill(dt);
     9
    10            Hashtable htt = new Hashtable(5);
    11
    12            foreach (DataRow dr in dt.Rows)
    13            {
    14                htt.Add(dr["orderID"], dr["CustomerID"]);
    15
    16            }

                 ArrayList al = new ArrayList(htt.Values);
                 al.Sort();
                 for (int i = 0; i < al.Count; i++)
                 {
                           //if (al[i].ToString() =="VINET")
                             //{
                                // Response.Write(al[i].ToString());
                              //}
                         Response.Write(al[i].ToString());
                 }

    19            foreach (DictionaryEntry de in htt)
    20            {
    21               if (de.Value.ToString == "ALFKI")
    22               {
    23                   Response.Write(de.Key + "Next .");
    24               }

    25            }

    26            GridView1.DataSource = dt;
    27            GridView1.DataBind();
    28
    29        }
  • 相关阅读:
    (转).NET Compact Framework使用P/Invoke服务
    C#编码好习惯
    有些东西必须时刻放在心上!
    我是这样的人吗?是!!!!!!!!!
    经济学家张五常教大家四招读书的方法 (转)
    #在宏中的某些用法(转)
    牛人太强了,我该怎么努力呀?
    利用增强限制条件来求解问题
    努力呀!即将面临的deadline
    volume visualization reserach时刻记在心的要点
  • 原文地址:https://www.cnblogs.com/xiaobaigang/p/857672.html
Copyright © 2011-2022 走看看