我知道当x是一个空的复选框时,下面的代码什么也不做,因为X根本不在request.from集合中,而且我知道there is html hacks using hidden input fields使得下面的代码可用。
for each x in request.form
if request(x)<>"" then
response.write request(x)
else
response.write "not present"
end if
next
我的确切问题是:
1:这是HTML或浏览器标准的标准(或HTML标准和浏览器标准之间没有区别)?
2:当上述代码是编程的基本要求时,为什么忽略发送空复选框?