|
|
|
รบกวนดู code ให้หน่อยครับ รับค่าวันที่ลงฐานข้อมูลมาแล้ว แต่ค่าที่แสดงไม่ตรงกัน |
|
|
|
|
|
|
|
Code (C#)
string sqlString = "INSERT INTO tb_profile(IdNumber,Name,Surname,EmailAddress,Phone,Sex,DateAdd, Address,District,Prefecture,Province,Zipcode)VALUES(@IdNumber, @Name,@Surname,@EmailAddress,@Phone,@Sex,@DateAdd,@Address,@District,@Prefecture,@Province,@Zipcode)";
SqlCommand comm = new SqlCommand(sqlString);
comm.Connection = objConn;
comm.Parameters.AddWithValue("@IdNumber",TxtIdnumber.Text);
comm.Parameters.AddWithValue("@Name", TxtName.Text);
comm.Parameters.AddWithValue("@Surname", TxtSurname.Text);
comm.Parameters.AddWithValue("@EmailAddress", TxtEmailAddress.Text);
comm.Parameters.AddWithValue("@Phone", TxtPhone.Text);
comm.Parameters.AddWithValue("@Sex", RBLSex.Text);
comm.Parameters.AddWithValue("@DateAdd", TxtDateAdd_CalendarExtender.ClearTime);
comm.Parameters.AddWithValue("@Address", TxtAddress.Text);
comm.Parameters.AddWithValue("@District", TxtDistrict.Text);
comm.Parameters.AddWithValue("@Prefecture", TxtPrefecture.Text);
comm.Parameters.AddWithValue("@Province", TxtProvince.Text);
comm.Parameters.AddWithValue("@Zipcode", TxtZipcode.Text);
เลือกรับค่าวันที่ลงไปแล้ว บันทึกลงฐานข้อมูลได้ แต่ค่าที่แสดงกลายเป็นอีกแบบครับ
ตัวอย่าง
รับค่าวันที่เป็น 21/10/2013 แต่ข้อมูลแสดงเป็น 1/1/1900 12:00:00 AM ครับ
จะแก้ยังไงครับ
Tag : .NET, C#
|
|
|
|
|
|
Date :
2013-10-21 11:02:30 |
By :
sompor |
View :
790 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TxtDateAdd_CalendarExtender.ClearTime คืออะไรอ่ะครับ
ถ้าจะเอาเฉพาะค่า date มันไม่ได้ทำแบบนี้นะ
ปล. เราดูไม่ออกว่า win หรือ web แต่เดาว่าเว็บ
|
|
|
|
|
Date :
2013-10-21 13:00:11 |
By :
ห้ามตอบเกินวันละ 2 กระทู้ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
breakpoints ตรงบรรทัด
Code (C#)
comm.Parameters.AddWithValue("@DateAdd", TxtDateAdd_CalendarExtender.ClearTime);
แล้วดูค่า TxtDateAdd_CalendarExtender ว่าค่าเป็นอะไร
|
|
|
|
|
Date :
2013-10-21 13:03:16 |
By :
tee |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ ขอบคุณครับ
|
|
|
|
|
Date :
2013-10-21 13:42:55 |
By :
sompor |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|