I am querying the database and outputting results onto my ASP.net page.
This is the query --> SELECT * FROM tblsometablename t1 where t1.collegeID=@collegeID and t1.DateCreated >= '3/20/2005' and t1.DateCreated <= '7/8/2010' order by t1.DateCreated desc, t1.StudentsLastName, t1.StudentsFirstName asc
The problem is the ending date. In this case it is 7/8/2010, but does not include 7/8/2010, it only shows results up to 7/7/2010. It always seems to be one day behind. Any ideas?