test.aspx.cs
上传用户:xrffrp
上传日期:2022-03-25
资源大小:22155k
文件大小:2k
源码类别:

OA系统

开发平台:

ASP/ASPX

  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Collections;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9. using System.Web.UI.WebControls.WebParts;
  10. using System.Web.UI.HtmlControls;
  11. using System.Data.SqlClient;
  12. public partial class web_test : System.Web.UI.Page
  13. {
  14.     protected void Page_Load(object sender, EventArgs e)
  15.     {
  16.         ArrayList id1 = new ArrayList();
  17.         ArrayList last_id = new ArrayList();
  18.         SqlConnection conn = dbConnection.getConnection();
  19.         conn.Open();
  20.        SqlCommand cmd = new SqlCommand("select a.id as id,b.id as id1 from oa_employee as a left join oa_department as b on a.department_id=b.id" +
  21.                               " where  position< 8 and department_id=39 order by position desc", conn);
  22.        // cmd.Transaction = tx;
  23.         SqlDataReader dr = cmd.ExecuteReader();
  24.         while (dr.Read())
  25.         {
  26.             id1.Add(dr["id"].ToString());
  27.             last_id.Add(dr["id1"].ToString());
  28.         }
  29.         dr.Close();
  30.        for (int j = 1; j < 5; j++)
  31.         {
  32.             cmd = new SqlCommand("select last_id from oa_department where id=" + last_id[j - 1], conn);
  33.         //    cmd.Transaction = tx;
  34.             SqlDataReader dr2 = cmd.ExecuteReader();
  35.             while (dr2.Read())
  36.             {
  37.               last_id.Add(dr2["last_id"].ToString());
  38.               Response.Write(last_id[j]);
  39.             }
  40.             dr2.Close();
  41.         }
  42.        
  43.     }
  44. }