杂七杂八!

C# .Net Sql AD Flash Javascript Ajax
C#里面比较时间


string st1="12:13";
string st2="14:14";


DateTime dt1=Convert.ToDateTime(st1);
DateTime dt2=Convert.ToDateTime(st2);
DateTime dt3=DateTime.Now;


if(DateTime.Compare(dt1,dt2)>0) 
     msg.Text=st1+">"+st2;
else 
     msg.Text=st1+"<"+st2; 


msg.Text+="\r\n"+dt1.ToString();


if(DateTime.Compare(dt1,dt3)>0) 
     msg.Text+="\r\n"+st1+">"+dt3.ToString();
else 
     msg.Text+="\r\n"+st1+"<"+dt3.ToString();

posted on 2008-09-03 00:01  acheng  阅读(166)  评论(0编辑  收藏  举报