Click here to Skip to main content
15,881,852 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
How Can I match BirthDate With Current Date???Pls Ans me the query ...which is run in my asp.net ...
Posted

DateTime.Now gives you a DateTime object with the current date. Then just compare the objects' Day and Month with your birthday
 
Share this answer
 
v2
wrote
|How Can I match BirthDate With Current Date???Pls Ans me the query ...which is run in my asp.net ...

Your Tag saying "SQL 2005" but in your question you mentioned you need query run in asp.net....A Confusing question, please hereafter ask the question correctly otherwise we can only guess not solve.

let's come..if you need the solution in front end then follow benjymous method

otherwise if you need the solution in sql, look into the following

SQL
SELECT * FROM tblPerson WHERE CONVERT(nvarchar(10),BirthDate,101)=CONVERT(nvarchar(10),GetDate(),101)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900