这段asp代码哪里错了呀,初学求指点
Microsoft VBScript 运行时错误 错误 '800a000d'
类型不匹配: '[string: "为奇数"]'
/vitual/123.asp,行 11
<%@language=VBScript%> <html> <head> <title>显示</title> </head> <% for i=1 to 10 if(i mod 2)=0 then response.write(i+"为偶数") else response.write(i+"为奇数") end if next%> </html>