private void button7_Click(object sender, EventArgs e) { SqlCeConnection connection = new SqlCeConnection("Data Source=Database.sdf;Persist Security Info=False;"); connection.Open(); SqlCeCommand sCommand = new SqlCeCommand(@"INSERT INTO customer (Name,Tel,Email) VALUES ('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "')", connection); sCommand.ExecuteNonQuery(); MessageBox.Show("Row inserted !! "); connection.Close(); }
sCommand.CommandType = CommandType.Text; sCommand.ExecuteNonQuery();
myConnection = new SqlCeConnection("Data Source=Database.sdf;Persist Security Info=False;"); myConnection.Open(); SqlCeCommand myCommand = myConnection.CreateCommand(); myCommand.CommandText = @"INSERT INTO customer (Name,Tel,Email) VALUES ('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "')") "; myCommand.CommandType = CommandType.Text; myCommand.ExecuteNonQuery();
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง