当我运行脚本时,它说
Microsoft VBScript 运行时错误“800a01f5”
非法分配:'MAX_AGE'
/classic.asp,第 8 行
这是脚本:
response.Write(GetMaxAge())
Function GetMaxAge()
const MAX_AGE = 50
Dim iRtnValue
MAX_AGE = 45
iRtnValue = MAX_AGE
GetStudentAge = iRtnValue
End Function