Hello I am using datetimepicker as explained in following link
https://www.aspsnippets.com/Articles/jQuery-UI-DatePicker-Calendar-Example-in-ASPNet.aspx
I want to show current date in that textbox 1st and if user want to change the date then he can click on image button and change date as explained in above article.
Just thing I want is initialy textbox must show current date.
for that i have used following c# code on page load
txtDate.Text = DateTime.Today.ToString("MM/dd/yyyy");
This code gives current date format as - 05-09-2018
whereas my desired date format is - 05/09/2018
How to get this desired date format ?
Thanks