ASP入门基础教程:使用Form集合(2)
2015-10-24编辑:ljnbset
读取Form集合中所有元素对象的值
还是以上题为例,表单提交的代码与文件4-3a.htm基本一样,我们将其取名为:4-3b.htm,其代码如下:
输入数据的表单
在表单处理程序代码中,使用“For each...IN”循环语句,读取Form集合中所有元素对象的值。文件名为:4-3b.asp,代码如下:
ASP与表单的交互
<%
xm=Request.form("姓名")
xb=Request.form("性别")
if xm<>"" then
Response.write"
欢迎登录本站
"
Response.write"您的大名是" & xm &"。"
if xb="男" then
Response.write".是一位帅男。"
else
Response.write"。是一个亮妹。"
end if
Response.write"
返回上一页"
Response.end
end if
%>
请输入