February 2008 - Posts
Infosys is India's most well know company at we all know.Recently I have visited the Infosys and I found there blogs about Microsoft Technologies. I had read some entries and I found lots of things to learn.
here is the link for there blogs about Microsoft technology.
http://infosysblogs.com/microsoft/net_20/
Hi Folks,
I have found that some times in firefox getyear function is not working properly. For example.We define a date value with following.
var dtTo = new Date("11-Feb-2007");
Now if you do alert like
Alert(dtTo.getYear());
But in firefox year is displaying like 107.So to fix this issue. I have used getFullYear function like
Alert(dtTo.getFullYear());
And It's working fine...
More Posts