It is very convenient to publish asp code.
Do not specify the background description
You only need to paste the code, and the next copy will work.
<% @ LANGUAGE = "VBSCRIPT" CODEPAGE = "936" %>
<! DOCTYPE html PUBLIC "-// W3C // dtd xhtml 1.0 Transitional // EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<Html xmlns = "http://www.w3.org/1999/xhtml">
<Head>
<Meta http-equiv = "Content-Type" content = "text/html; charset = gb2312"/>
<Title> untitled document </title>
</Head>
<Body>
<% Dim OK
Dim ok2
OK = request. QueryString ("")
Response. write (OK + "<br/> ")
Ok2 = split (OK ,",")
For I = 0 To UBound (ok2)
Response. Write ("the number you selected" & I + 1 & "ID:" & ok2 (I) & "<br/> ")
Next
%>
<Form action = "#" method = "get" name = "f">
<Input name = "a" type = "checkbox" value = "1"/> a <br/>
<Input name = "a" type = "checkbox" value = "2"/> B <br/>
<Input name = "a" type = "checkbox" value = "3"/> c <br/>
<Input name = "a" type = "checkbox" value = "4"/> d <br/>
<Input name = "a" type = "checkbox" value = "5"/> e <br/>
<Input type = "submit" value = "go"/>
</Form> </body>
</Html>