page1:
<html>
<title>name</title>
<body>
<form method=post action="mail.asp">
<table>
<tr>
<td><font size="4" color="#FF0099">put in passward</font>:</td>
<td><input type="passward" name="pas"></td>
</tr>
<tr>
<td><input type="submit"value="submit" style="background:#FFFF99;color:#3333FF"></td>
<td><input type="reset" style="background:#FFFF99;color:#3333FF"></td>
</tr>
</table>
</form>
</body>
</html>page2:
<% pas=request.form("pas")
if pas<>"" then
response.write"You have putin the passwar is:"&pas
else
response.write"Your passward is null"
end if
%>