Hi,
I have made a search page on which users can search for documents. They can
search by documentnumber, customername,.. . and also by date. Now the problem
is that when a date is entered it doesn't show anything.
When I look at the SQL server Enterprise management and make a query there,
the following works:
select *
from TBL_Bestanden_Z oeken
where (datum='2005-12-31')
When I code it like that in my asp.net site, that when the field is not
empty, it searches for the documents with date='2005-12-31' then it doesn't
give any results.
What can I do?
Fré
I have made a search page on which users can search for documents. They can
search by documentnumber, customername,.. . and also by date. Now the problem
is that when a date is entered it doesn't show anything.
When I look at the SQL server Enterprise management and make a query there,
the following works:
select *
from TBL_Bestanden_Z oeken
where (datum='2005-12-31')
When I code it like that in my asp.net site, that when the field is not
empty, it searches for the documents with date='2005-12-31' then it doesn't
give any results.
What can I do?
Fré
Comment