I have A html page from where i am sending many data to handler this is a part of my handler
string dob = (context.Request.QueryString["dob"]);
DateTime dt = DateTime.ParseExact(dob, "dd/MM/yyyy", CultureInfo.InvariantCulture);
here dob contains date of birth in format like 03/25/1993.
But while debugging it gives an error
"the datetime represented by the string is not supported in calendar system.globalization".
EDIT- If i enter 09/09/2014 it gives no error.
.