📄 04_03a.asp
字号:
<html>
<head>
<title>Form表单实例</title>
<style>
<!--
td { font-size: 12px }
-->
</style>
</head>
<body>
<p align="center"><font size="2">您</font><font size="2">的注册信息: </font>
<%
dim i,j
dim ArrayInterest(10)
dim str1
i = Request.Form("chkInterest").Count
If i >= 1 Then
For j = 1 to i
ArrayInterest(i) = Request.Form("chkInterest")(j)
Response.Write "<br>" & ArrayInterest(i)
Next
End If
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -