protected void BtnInsert_Click(object sender, EventArgs e) { //ที่ กริด แต่ละ คอลัมภ์ ก้ ทำให้เป็น template ด้วยนะครับ แล้ว FindControl("label1") เอา // ไม่แน่ใจเหมือนกันครับ ผมทำมาให้คร่าวๆนะครับ ลองประยุกต์ใช้ดูครับ for (int i = 0; i < GridView1.Rows.Count; ++i) { SqlConnection con = new SqlConnection("ConnectionString"); SqlCommand cmd = new SqlCommand(); cmd.CommandText = "INSERT INTO table(pt_code,pt_desc) " + "VALUES(@pt_code, @pt_desc)"; cmd.Parameters.Add("@pt_code", SqlDbType.VarChar).Value = ((Label)GridView1.Rows[i].FindControl("label1")).Text; cmd.Parameters.Add("@pt_desc", SqlDbType.VarChar).Value = ((Label)GridView1.Rows[i].FindControl("label2")).Text; cmd.Connection = con; con.Open(); cmd.ExecuteNonQuery(); con.Close(); } }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง