【例15.1】从浏览器输出运行结果
<%
Response.write("This writes line one")
sLine="This writes line two"
Response.write"<B>"& sLine &"</B>"
%>
运行后屏幕显示结果如下:
This writes line one
This writes line two
【例15.2】从浏览器获取用户输入的信息。(基础模块1.”数据输入与数据的获取”)
编程实现如图15.1的结果:在浏览器上显示简单的HTML文本框,为Web客户提供输入用户名、密码、电子信箱、电话、简历的窗口。

图 15.1 数据输入与数据获取

图 15.2 数据输入结果显示该模块由程序input_data.htm与input_data.asp组成,input_data.htm提供一个用户输入的界面,input_data.asp实现了从浏览器获取用户输入的信息并把接受到的信息在浏览器上显示出来的功能.如图15.2所示。
input_data.htm程序可用Frontpage软件中的工具自动生成HTML程序代码。在Frontpage主菜单的“插入”中选“表单”,用“表单”中的“单行文本框”“滚动文本框”及“按钮”项即可制作input_data.htm的输入界面。
<input_data.htm>源程序:
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">abc
<title>基础模块之“数据录入”页面</title>
</head>
<body bgcolor="#C0C0C0">
<form method="POST" action="input_data.asp">
<p>
<font face="华文行楷" size="6">输入数据</font></h1>
</p>
<h3>请输入数据:</h3>
<p>用户名:&nbsp; <input type="text" name="txtUserName" size="20">
</p>
<p>
密码:&nbsp;&nbsp;&nbsp; <input type="password" name="txtPassword" size="20">
</p>
<p>
电子邮箱:<input type="text" name="txtEmail" size="20">
</p>
<p>
电话:&nbsp;&nbsp;&nbsp; <input type="text" name="txtPhone" size="20">
</p>
<p>简历:</p>
<p>
<textarea rows="4" name="txtResume" cols="30"></textarea>
</p>
<p>
<input type="submit" value="提交" ><input type="reset" value="全部重填">
</p>
</form>
</body>
</html>
输入用户信息后,单击Submit按钮,程序将提交该窗体到其窗体句柄中。在本例中,窗体句柄是一个ASP脚本input_data.asp。
input_data.asp程序流程图如下图15.3:

图 15.3 input_data.asp程序流程图
<input_data.asp>的源程序:
<%Option Explicit%>
<%
'接收表单输入的数据
Dim userName,password,email,phone,userResume
userName=Request.Form("txtUserName")
password=Request.Form("txtPassword")
email=Request.Form("txtEmail")
phone=Request.Form("txtPhone")
userResume=Request.Form("txtResume")
%>
<!--输出接收到的表单数据-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>基础模块“输入和接收数据”之“接收数据并显示”</title>
</head>
<body bgcolor="#C0C0C0">
<p>
<font face="华文行楷" size="6">接收输入的数据并显示</font></h1>
</p>
<h3>您输入的数据是:</h3>
<p>
用户名:<% =userName %>
</p>
<p>
密码:<% =password %>
</p>
<p>
电子邮箱:<% =email %>
</p>
<p>
电话,<% =phone %>
</p>
<p>
简历:<% =userResume %>
</p>
</body>
</html>