list.asp
----------------------------------------------------------------------------------
<form name="form" method="post" action="update.asp">
±Û¹øÈ£4 : <input type="checkbox" name="no" value="4" checked>
±Û¹øÈ£3 : <input type="checkbox" name="no" value="3" checked>
±Û¹øÈ£2 : <input type="checkbox" name="no" value="2">
±Û¹øÈ£1 : <input type="checkbox" name="no" value="1">
<input type="image" src="notice.gif" border="0">
</form>
update.asp
----------------------------------------------------------------------------------
<%
Response.Write Request.Form("no") '4,3,, <<¿ä·¸°Ô ³Ñ¾î¿Ã°Å¿¡¿ä
For i=1 To Request.Form("no").Count
no = Trim(Request.Form("no ")(i))
If no <> "" Then
'no´Â ±Û¹øÈ£°ÚÁÒ Ã¼Å©°¡ µÈ°ÍÀ̹ǷΠ1·Î ¾÷µ¥ÀÌÆ®
End If
Next