本文介绍了7天内在c#中过期用户的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我如何做到这一点,我想过期有加入日期的用户如果他在7天内未访问我们公司那么他将过期.....
PLZ告诉我....提前致谢
How I do this , I want to expire User that have joining date If he not visited our company in 7 days then he will be expired.....
PLZ tell me .... thanks in advance
public bool CheckExpireUser(int UserId)
{
DateTime joingDte= MRB.get_JoingDate(UserId);
DateTime expireUsr = joingDte.AddDays(7);
if (expireUsr<=DateTime.Now)
{
return true;
}
else
{
MRB.Expire_Reg_Code(UserId); //EXPIRE USER ID CODE
return false;
}
推荐答案
这篇关于7天内在c#中过期用户的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!