sql="select truename,headpic,birthday from [txluser] where month(birthday)=month(Now())"
改为
sql="select truename,headpic,birthday from [txluser] where day(birthday)=day(Now())"
-------------------
response.write"本月没有人过生日"
改为
response.write"今天没有人过生日"
sql="select truename,headpic,birthday from [txluser] where month(birthday)=month(Now())"
改为
sql="select truename,headpic,birthday from [txluser] where month(birthday)=month(Now()) and day(birthday)=day(Now())"
'-------------------
response.write"本月没有人过生日"
改为
response.write"今天没有人过生日"