MonthName() function is not working in windows 8

erkanguness

New Member
Before that i using window 7, I did the use the function MonthName() http://www.w3schools.com/vbscript/func_monthname.aspmy code when using windows 7:\[quote\] response.write MonthName(12,True)\[/quote\]result:\[quote\] Dec\[/quote\]After upgrading to windows 8, I use back the same function but got different output which the it did not convert the integer 12 to the abbreviated month name but display the integer with a question mark at the back.my code when using windows 8:\[quote\] response.write MonthName(12,True)\[/quote\]result:\[quote\] 12?\[/quote\]even if i tried by showing the non-abbreviate month name it shows 3 question mark:\[quote\] response.write MonthName(12,True)\[/quote\]output:\[quote\] ???\[/quote\]can anybody help??
 
Back
Top