where thing is > today
What is the asp code to search a date filed for all dates >= todays date?
I've tried (date()), (GetDate()), etc. Nothing seems to be working.
Code looks like this:
strSQL = "SELECT * " & _
" FROM classes "
" Where ClassDate >= " & "(Date())"
|