Пример #1
0
 protected void bind()
 {
      keylog key = new keylog();
      DataSet ds = key.Getkey(staffname);
     GridView1.DataSource = ds;
     GridView1.DataBind();
 }
Пример #2
0
 protected void GridView1_RowUpdating(object sender, GridViewUpdateEventArgs e)
 {
     string ID = ((Label)(this.GridView1.Rows[e.RowIndex].FindControl("Label1"))).Text;
     string deliver = ((Label)(this.GridView1.Rows[e.RowIndex].FindControl("Label2"))).Text;
     //string time = ((TextBox)(this.GridView1.Rows[e.RowIndex].FindControl("TextBox1"))).Text;
     System.DateTime currentTime = new System.DateTime();
     currentTime = System.DateTime.Now;
     string systime1 = currentTime.ToString("d");
     keylog key = new keylog();
     int id = 0;
     int.TryParse(ID, out id);
     key.Updatekey(id,staffname,deliver,systime1);
     GridView1.EditIndex = -1;
     Response.Write("<script>alert('钥匙已交接');</script>"); 
     bind();
 }