日期:2014-05-17  浏览次数:20577 次

asp.net 生日提醒功能
哪位高人帮个忙,怎么实现生日提醒功能呀!好比qq空间那样提前通知的。

求帮助。有源码的最好。
asp.net 源码

------解决方案--------------------

string birthday="数据库中的生日字段值";
string sysTime=DateTime.Now.ToString("MMdd");
int temp=Int32.Parse(Convert.ToDateTime(birthday).ToString("MMdd"))-Int32.Parse(sysTime);
if(temp>=0&&temp<7)
{
 //生日快到了
}