I am facing a small issue which i am not able after trying so many things so here it goes ..... There is a text box in my page in which i am entering date and i want that date in a datetime object.
for ex : date entered : 11/2/2010 (dd/MM/yyyy) should be in same format when i am accessing it in date time object but it is getting changed to (2/11/2011 ie: MM/dd/yyyy format).
i hope i am making sense here all i want is some thing like this.....
DateTime dt = convert.ToDateTime(txtDate.Text);
dt should be (11/2/2010 rather then 2/11/2010)
@oded after using the following code
DateTime sDate, eDate = new DateTime();
//To modify dates for our use. DateTime.TryParseExact(txtFrom.Text, "dd/MM/yyyy", CultureInfo.InvariantCulture, DateTimeStyles.None, out sDate);
DateTime.TryParseExact(txtFrom.Text, "dd/MM/yyyy", CultureInfo.InvariantCulture, DateTimeStyles.None, out eDate);
What i am getting in edate and sdate is 1/1/0001 12:00:00 AM where it should be 3/11/2011.
CalenderExtender1.Format = "dd.MM.yyy";from AjaxControlToolkit?I do not think it is safe to type the date users may enter anything who do not know how your date textbox works. – Bastardo Oct 6 '11 at 12:55