i am creating a webpage for keeping tracks of new hires.
in my database we keep track of the day they start (
Code:
start_date
) any way i was trying to make the asp only list the people who start AFTER the current date.

so i was trying

Code:
WHERE DateDiff(""d"", start_date, " & date() & ")"
within my SQL Query, but it was not successful... anyone have a better idea?