<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<table width="100%" height="56" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><form name="form1" method="post" action="aaa.asp?s=1">
姓名:
<select name="names" id="names">
<option value="张三">张三</option>
<option value="李四">李四</option>
</select>
性别
<select name="sex" id="sex">
<option value="男">男</option>
<option value="女">女</option>
</select>
年龄
<select name="age" id="age">
<%
for i=1 to 100
%>
<option value="<%=i%>"><%=i%>岁</option>
<%next%>
</select>
学历
<select name="xl" id="xl">
<option value="初中">初中</option>
<option value="高中">高中</option>
<option value="大学">大学</option>
</select>
<input type="submit" name="Submit" value="提交">
</form></td>
</tr>
</table>
<table width="50%" border="0" cellspacing="0" cellpadding="0">
<tr bgcolor="#CCCCCC">
<td height="20"><div align="center">姓名</div></td>
<td><div align="center">性别</div></td>
<td><div align="center">年龄</div></td>
<td><div align="center">学历</div></td>
</tr><%
if request.QueryString("s")="1" then
%>
<tr>
<td height="20"><div align="center"><%=request.Form("names")%></div></td>
<td><div align="center"><%=request.Form("sex")%></div></td>
<td><div align="center"><%=request.Form("age")%></div></td>
<td><div align="center"><%=request.Form("xl")%></div></td>
</tr><%end if%>
</table>
</body>
</html>
不知道是不是你想要的..我随便弄了一个
[此贴子已经被作者于2007-6-19 13:50:55编辑过]
http://www./