Thanks for how to get current date.
After some googling i have modified to get months as names.
It works, but did not display latin-extended characters.
I tried with ascii and did not work too.
Is there any way to display latin-extended characters…
month = new Array();
month[0] = "Ocak";
month[1] = "Åžubat";
month[2] = "Mart";
month[3] = "Nisan";
month[4] = "Mayıs";
month[5] = "Haziran";
month[6] = "Temmuz";
month[7] = "AÄŸustos";
month[8] = "Eylül";
month[9] = "Ekim";
month[10] = "Kasım";
month[11] = "Aralık";
D = new Date(Date(0));
"" + D.getDate() + " " + month[(D.getMonth())] + " " + D.getFullYear()