<%
dim getd
dim splitd
getd=request("test")
if getd<>"" then
splitd = split(getd,",")
response.write(getd)
for i=0 to ubound(splitd)
response.write("<br>"&splitd(i))
next
end if
%>
<form action="">
<input type="checkbox" name="test" value="1">
<input type="checkbox" name="test" value="2">
<input type="checkbox" name="test" value="3">
<input type="checkbox" name="test" value="4">
<input type="submit" value="submit">
</form>
dim getd
dim splitd
getd=request("test")
if getd<>"" then
splitd = split(getd,",")
response.write(getd)
for i=0 to ubound(splitd)
response.write("<br>"&splitd(i))
next
end if
%>
<form action="">
<input type="checkbox" name="test" value="1">
<input type="checkbox" name="test" value="2">
<input type="checkbox" name="test" value="3">
<input type="checkbox" name="test" value="4">
<input type="submit" value="submit">
</form>

浙公网安备 33010602011771号