我正在从文本框中的日历扩展器中选择值,并且我正在获取格式中的值,但我希望它以另一个文本框
()中的格式显示,如下所示{"MM/dd/yyyy"}
{"dd/MM/yyyy"}
txt_actualrightformat.Text
DateTime wrongformat = DateTime.Parse(TextBox4.Text);
String rightformat = String.Format("{0:dd/MM/yyyy}", wrongformat.Date);
txt_actualrightformat.Text = rightformat.ToString();