【发布时间】:2020-10-23 15:10:58
【问题描述】:
我不断收到此错误
Microsoft VBScript 运行时错误“800a000d”
类型不匹配:'[string: ""]'
intHPrimary = rtrim(request.form("chkHPrimary"))
if len(intHPrimary) > 0 and isNumeric(intHPrimary) then
intHPrimary = cint(intHPrimary)
else
intHPrimary = 0
end if
<%if intHPrimary > 0 then%>---This is where I get my error
<input type="checkbox" name="chkHPrimary" value= "1" checked />
<%else%>
<input type="checkbox" name="chkHPrimary" value= "1" />
<%end if%></td>
【问题讨论】:
标签: asp-classic