regist.asp页面的内容
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!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=utf-8" />
<title>注册页面</title>
</head>
<body>
<table width="600" border="0" cel
lsp
acing="0" style="font-size:14px; text-align:center; margin:0px auto;">
<tr>
<td colspan="3">注册</td>
</tr>
<tr><form method="post" action="deal.asp">
<td width="60" style="text-align:right;">用户名</td>
<td style="text-align:left;"><input type="text" id="username" name="username" /></td>
<td width="60"> </td>
</tr>
<tr>
<td width="60" style="text-align:right;">密码</td>
<td style="text-align:left;"><input type="text" id="password" name="password" /></td>
<td width="60"> </td>
</tr>
<tr>
<td width="60" style="text-align:right;">年龄</td>
<td style="text-align:left;"><input type="text" id="age" name="age" /></td>
<td width="60"> </td>
</tr>
<tr>
<td width="60" style="text-align:right;">籍贯</td>
<td style="text-align:left;"><input type="text" id="birthplace" name="birthplace" /></td>
<td width="60"> </td>
</tr>
<tr>
<td width="60" style="text-align:right;">个人说明</td>
<td style="text-align:left;"><input type="text" id="resume" name="resume" size="60" /></td>
<td width="60"> </td>
</tr>
<tr>
<td colspan="3"><input type="submit" value="提交" /></td>
</tr></form>
</table>
</body>
</html>
-----------------------------------------------------分割线----------------------------------------------------
deal.asp的页面
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<%
username=request.Form("username")
password=request.Form("password")
age=request.Form("age")
birthplace=request.Form("birthplace")
resume_=request.Form("resume")
'获取提交过来的信息
%>
<%
response.Write("用户名:"&username&"</br>")
response.Write("密码:"&password&"</br>")
response.Write("年龄:"&age&"</br>")
response.Write("籍贯:"&birthplace&"</br>")
response.Write("个人说明:"&resume_&"</br>")
'输出显示信息
%>
-----------------------------------------------------分割线----------------------------------------------------
你的第二个要求我看不懂,
跳转到time.asp后显示打开show.html的时显示的时间。?????