WEB开发网
开发学院软件开发VB c#时间增加并对比做法 阅读

c#时间增加并对比做法

 2006-04-27 12:48:55 来源:WEB开发网   
核心提示:int jg=72;//设置一个增加的时间 DateTime dt=Convert.ToDateTime("2006-4-23 12:22:05");// 设置一个初始化的时间 DateTime newdt=dt.AddHours(jg);//初始化时间加上增加的时间 DateTime nowt=D

int jg=72;//设置一个增加的时间
  DateTime dt=Convert.ToDateTime("2006-4-23 12:22:05");// 设置一个初始化的时间
  DateTime newdt=dt.AddHours(jg);//初始化时间加上增加的时间
  DateTime nowt=DateTime.Now;//现在的时间
  Response.Write("现在时间是:"+nowt+"<br>");
  Response.Write("数据库时间是:"+dt+"<br>");
  Response.Write("新的时间是:"+newdt+"<br>");
  if(newdt<nowt)//如果相加后的时间大于现在的时间
  {
   Response.Write("可以");
  }
  else//否则
  {
   Response.Write("不行");
  }


解决下面这个投票系统间隔时间的方法:

http://thcjp.cnblogs.com/archive/2006/04/20/380169.html

今天在看asp.net完全手册这书的时候发现的这个方法,忙着学习,懒得修改,如果有朋友觉得有必要就自己去改好了,修改方法就是把vote.aspx.cs  的load事件下面的时间判断修改下,然后在数据库中把vlog表中的dtime字段属性设置为 datetime 属性就可以了,呵呵!!

Tags:时间 增加 对比

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接