I want to display date in 09/07/2013 format instead of 09-jul-13.
Dim dt As Date = Date.Today MsgBox(dt)
Try this.
var dateAsString = DateTime.Now.ToString("dd/MM/yyyy"); // dateAsString = "09/07/2013"
and also check this link for more formatting data and time