WEB开发网
开发学院WEB开发ASP ASP入门基础教程-使用Form集合 阅读

ASP入门基础教程-使用Form集合

 2006-10-26 12:01:21 来源:WEB开发网   
核心提示: <html><head><title>利用表单输入信息</title></head><body><h3 align=center>ASP与表单的交互</h3><br><cent
<html>
<head><title>利用表单输入信息</title></head>
<body><h3 align=center>ASP与表单的交互</h3><br>
<center>
<%
xm=Request.form("姓名")
xb=Request.form("性别")
if xm<>"" then
Response.write"<p>欢迎登录本站<br>"
Response.write"您的大名是" & xm &"。"
if xb="男" then
Response.write".是一位帅男。"
else
Response.write"。是一个亮妹。"
end if
Response.write"<P><a href='4-3-1.asp' target='txtFrame'>返回上一页</a>"
Response.end
end if
%>
请输入
<form Action="2.asp" method=post>
姓名:<input type="text" Name="姓名" size=8>
性别:男<input type="Radio" Name="性别" value="男" checked>
女<input type="Radio" Name="性别" value="女"><p>
<input type="Submit" value="提交">
<input type="Reset" value="重写">
</form>
</center>
</body>
</html>

三、读取Form集合中某元素对象的特定值

   如果想显示应聘者是第二专业是什么?我们可以通过Form集合中的索引值来读取。表单信息提交程序完全用4-3b.htm代码,只是在保存文件时,请将文件名改成4-3c.htm。并将表单中的提交方式改为:action=4-3c.asp。调用表彰处理程序(文件名:4-3c.asp)如下。 <html>
<head><title>读取Form集合的某个多值元素的特定值</title></head>
<body>
<center>
读取Form集合的某个多值元素的特定参数值<P>
<hr size="2" widht="80%" color="#cc9999">
<P>欢迎您登录本站点<P>
<%
Response.write(Request.Form("姓名") & "的第二个专业是:")
Response.write(Request.Form("所学专业")(2) & "<br>")
%>
<P align="center">这些信息对吗?
<a href="4-3c.htm">如不对,返回</a>***||***<a href="4-3-2.asp">返回教材</a>
</center>
</body>
</html>

四、读取Form集合的某元素对象的全部参数值

现在我们要读取某应聘者所修的所有专业,信息提交还是由文件4-3b.htm来完成,将它另存为4-3d.htm,并将表单中的提交方式改为:action=4-3c.asp。信息处理程序的文件名为:4-3d.asp。其代码如下:

<html>
<head><title>读取Form集合的某个多值元素的特定值</title></head>
<body>
<center>
读取Form集合的某个多值元素的特定参数值<P>
<hr size="2" widht="80%" color="#cc9999">
<P>欢迎您登录本站点<P>
<%
For I=1 to Request.Form("所学专业").count
Response.Write(Request.Form("姓名")& "的" & I & "专业是:")
Response.Write(Request.Form("所学专业")(I)&"<br>")
Next
%>
<P align="center">这些信息对吗?
<a href="4-3d.htm">如不对,返回</a>***||***<a href="4-3-2.asp">返回教材</a>
</center>
</body>
</html>

查看全套"ASP入门基础"教程>>>>>

上一页  1 2 3 4 

Tags:ASP 入门 基础

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接