1
Answer

when i run code shows string was not recognized validdatetim

narasiman rao

narasiman rao

12y
1.4k
1
the code as follows;
 
DateTime dateofbirth = Convert.ToDateTime(txt_DOB.Text.ToString());
DateTime Weddingday = Convert.ToDateTime(txt_wedding.Text.ToString());
 
if(dateofbirth.Year.ToString()!="1900")
SendSMS(txt_DOB.Text.Trim());
else if(Weddingday.Year.ToString()!="1900")
SendSMS(txt_wedding.Text.Trim());
 

when i run this code error as follows;
 
string was not recognized a valid date time.
 
from my above wat is the problem help me.
Answers (1)