Hi,
There is a readymade field available for this purpose. Current
Date field in the Custom palette. Just drag and drop the field. Code
is present in its layout-ready event. Change the date format to "2".
And there you are!
Alternatively, use a standard date/time field and paste this script in
the field event - layout-ready and language-formcalc
// Current Date in short-style date format.
$.rawValue = num2date(date(), DateFmt(2))
Ramya.