Date is not displaying in this format (dd/MM/yy)
Actual this is my date which i have stored in excel sheet: 07-09-2015
and i want to display this date into message box
i am using this method to display the date: row.Item(“BIRTH_DATE”).ToString.Replace(“/”,“”)
this is the output which i am getting
Input: 07-09-2015
Expected output: 07092015
Actual output what i am getting now:
How to implement this?
Thanks