Problem with date - getMonth()

Hi,

I am facing one problem with date object. My date textfield textfield displays month as 5 …ie MAY…but Actually it should be 6. Date and Year is coming fine. I do checked my systems date, month also.

And most surprising is its showing the same problem on the other machines also. Can anyone help me out with this…pls…

here is the code:

da = new Date();
date.text =“Printed on “+ da.getDate()+”/”+da.getMonth()+"/"+da.getFullYear() + " at " + da.getHours() add “:” add da.getMinutes() add “:” add da.getSeconds();

Thanx
Ash