Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Label1.Text = FormatDateTime(TextBox1.Text, 0)
Label2.Text = FormatDateTime(TextBox2.Text, 0)
Dim str As String
str = "select * from test_date where ti_date BETWEEN '" & Label1.Text & "' AND '" & Label2.Text & "'"
Dim dt As New DataTable()
dt = connection.QueryDataTable(str)
GridView1.DataSource = dt
GridView1.DataBind()
End Sub
ใน DB ผมเก็บรูปแบบ dd/MM/yyyy 0:00:00 (ปีเป็น พ.ศ. ตามเครื่องครับ)
แล้วจำเป็นต้องตัดเวลาข้างหลังทิ้งป่าวครับ
ขอบคุณมากครับ
Tag : .NET, Ms SQL Server 2005, Web (ASP.NET), VB.NET