在此之前我使用窗口 7,我使用了函数 MonthName()
http://www.w3schools.com/vbscript/func_monthname.asp
我使用 Windows 7 时的代码:
response.write MonthName(12,True)
结果:
十二月
升级到 Windows 8 后,我使用了相同的功能,但得到了不同的输出,它没有将整数 12 转换为缩写的月份名称,而是在后面显示带有问号的整数。
我在使用 Windows 8 时的代码:
response.write MonthName(12,True)
结果:
12?
即使我尝试显示非缩写月份名称,它也会显示 3 个问号:
response.write MonthName(12,True)
输出:
???
有人可以帮忙吗??