Click here to Skip to main content
15,901,001 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear All

I am unable to get date from textbox in dd-MM-yyyy format and store in date variable. how will it be?



Regards
Posted

1 solution

C#
DateTime dt;

if (DateTime.TryParseExact(YourTextbox.Text, "dd-MM-yyyy", CultureInfo.InvariantCulture, DateTimeStyles.None, out dt))
{
  // use dt
}
 
Share this answer
 

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