|
|
|
รบกวนช่วย ตอบเรื่อง การลง วันเวลา ลงใน Database หน่อยครับ เป็น C# นะครับ |
|
|
|
|
|
|
|
protected void Button1_Click(object sender, EventArgs e)
{
DateTime time = DateTime.Today;
string a = TextBox1.Text;
string b = TextBox2.Text;
if (this.RadioButtonList1.SelectedItem.Value=="M")
{
conn.Open();
SqlCommand cmm = new SqlCommand("INSERT INTO TestTB1 (Fname,Lname,Gender,Time)VALUES(@a,@b,'m',@time)", conn);
cmm.Parameters.AddWithValue("@a",a);
cmm.Parameters.AddWithValue("@b",b);
cmm.Parameters.AddWithValue("@time", time);
cmm.ExecuteNonQuery();
}
DateTime time = DateTime.Today; มันบันทึกลงไปเป็น วันที่ อย่างเดียวครับ
อยากทราบว่า DateTime time = DateTime.Today; จะเปลี่ยน หรือมีวิธีเขียนอย่างไงให้ เก็บ วันที่และเวลาปัจจุบันครับ
Tag : ASP, Web (ASP.NET), C#, VS 2012 (.NET 4.x)
|
|
|
|
|
|
Date :
2014-05-14 14:15:30 |
By :
chatmusic |
View :
1397 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DateTime.Now
|
|
|
|
|
Date :
2014-05-14 14:37:31 |
By :
natt_han |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|