I want to display date in 09/07/2013 format instead of 09-jul-13.
Dim dt As Date = Date.Today MsgBox(dt)
Dim formattedDate As String = Date.Today.ToString("dd/MM/yyyy")
Check link below