 |
|
ติดตรงเงื่อนไข เรื่องเวลา ช่วยดูให้หน่อยครับ ผมทำ Dropdownlist 3อัน ติดตรงที่เงื่อนไข ถ้าเลือก วัน/เดือน/ปี |
|
 |
|
|
 |
 |
|
เอา value ที่ได้จาก dropdownlist ทั้ง 3 ตัวมารวมกัน
DropDownList1.SelectedItem.Value + "/" + DropDownList2.SelectedItem.Value + "/" + DropDownList3.SelectedItem.Value
จากวันก็ convert เป็น DateTime โดยใช้ DateTime.Parse(string วันที่ที่เลือก) เอาไปเปรียบเทียบกับวันปัจจุบัน
(DateTime.Now) ด้วย CompareTo() แบบนี้
int check = DateTime.Parse(string วันที่ที่เลือก).CompareTo(DateTime.Now)
ค่าที่ได้ ถ้าเท่ากับ 0 แสดงว่าวันเดียวกัน
น้อยกว่า 0 แสดงว่า เป็นอดีต
มากกว่า 0 แสดงว่า เป็นอนาคต
|
 |
 |
 |
 |
Date :
2009-12-10 11:57:46 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ยังไม่ค่อยเข้าใจครับ ช่วยยกตัวอย่างโค้ดได้มั้ยครับ รบกวนด้วย
|
 |
 |
 |
 |
Date :
2009-12-11 03:09:27 |
By :
nunghangbeer |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code (VB.NET)
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Label1.Text = ""
Dim connection As String = "Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Database.mdf;Integrated Security=True;User Instance=True"
Dim conn As New SqlConnection(connection)
If DateTime.Parse(ddlDay.SelectedItem.Value & "/" & ddlMonth.SelectedItem.Value & "/" & ddlYear.SelectedItem.Value).CompareTo(DateTime.Now) > 0 Then
Try
conn.Open()
Dim comm As String = "INSERT INTO CH (CH_IN) "
comm &= " VALUES ('" & lblSeleceDate.Text & "')"
Dim command As New SqlCommand(comm, conn)
command.ExecuteNonQuery()
conn.Close()
Response.Redirect("Default2.aspx")
Catch ex As Exception
Label1.Text = "พบปัญหาเกี่ยวกับข้อมูลโปรดตรวจสอบ"
End Try
End If
End Sub
|
 |
 |
 |
 |
Date :
2009-12-11 09:25:32 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณมากครับ
|
 |
 |
 |
 |
Date :
2009-12-11 14:42:31 |
By :
nunghangbeer |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
แล้วถ้าฐานข้อมูล เราเป็น datetime ไม่ใช่ string แบบcodeข้างบน
จะต้องแก้ตรงไหนครับ
|
 |
 |
 |
 |
Date :
2009-12-11 23:15:35 |
By :
game |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ลองเปลี่ยน type เป็น datetime และแก้ไขโค้ดแล้ว มีปัญหาerror
สาเหตุที่ต้องเปลี่ยนเป็น datetime เพราะว่าต้องการนำวัน/เดือน/ปี2ค่ามาคำนวนหาผลต่างเป็นวัน
แต่ถ้าเราเก็บเป็น string เหมือนเดิม เวลาจะคำนวณค่อยดึงมาแปลงค่าเป็นdatetime หรือ integer
จะเป็นไปได้มั้นค่ะ
|
 |
 |
 |
 |
Date :
2009-12-12 15:03:11 |
By :
game |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
อ๋อ นั้นแหละถูกแล้ว
เวลาเอาค่าไปคำนวณน่ะต้องเปลี่ยนเป็น DateTime สิ
แต่พอคำนวณเสร็จจะเอาเก็บลง Db ก็แปลงเป็น string อีกที
|
 |
 |
 |
 |
Date :
2009-12-12 16:15:27 |
By :
tungman |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|