I am trying to convert my string formatted value to date type with format dd/MM/yyyy.
dd/MM/yyyy
this.Text=\"22/11/2009\"; DateTime date = DateTime.Parse(
You can use also
this.Text = "22112009"; DateTime newDateTime = new DateTime(Convert.ToInt32(this.Text.Substring(4, 4)), // Year Convert.ToInt32(this.Text.Substring(2,2)), // Month Convert.ToInt32(this.Text.Substring(0,2)));// Day