Click here to Skip to main content
15,899,475 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
How can i minus two Dates (LblExpirydate.Text - Label3.Text )

C#
LblExpirydate.Text = String.Format("{0:dd/MM/yyyy}", dataReader(0))
Label3.Text = System.DateTime.Now.ToString(("dd/MM/yyyy"))



LblExpirydate.Text = 01/05/2013

Label3.Text = 01/04/2011
Posted

1 solution

Start by treating them as dates, rather than converting them to strings:
VB
Dim dt As DateTime = DirectCast(dataReader(0), DateTime)
Dim now As DateTime = DateTime.now
LblExpirydate.Text = String.Format("{0:dd/MM/yyyy}", dt)
Label3.Text = now.ToString("dd/MM/yyyy")
Dim diff As TimeSpan = dt - now
 
Share this answer
 
Comments
hany1002 30-Mar-13 13:05pm    
Great thanks
OriginalGriff 30-Mar-13 13:08pm    
You're welcome

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900