28,409
社区成员




1.asp
<body>
<form action="2.asp" method="post" name="1">
<input name="name" type="text" />
<input name="Email" type="text" />
<input type="submit" name="submit" value="提交">
</form>
</body>
2.asp
<%
'Name=REqeust("name")
name=request.Form("name")
Email=request.Form("Email")
response.Write Email
%>
<html>
<body>
<p> 你的姓名是: <%=name%> </p>
<p> 你的E-mail是:<%=Email%> </p>
</body>