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 da
Try DateTime.Parse with an appropriate format provider. In your case it should be
IFormatProvider culture = new CultureInfo("de-DE", true); DateTime.Parse(txtDate.Text, culture );