asp 的一个问题
2.asp
<html>
<body>
<form name="theform" action="3.asp">
<table>
<tr>
<td>UserName</td>
<td><input type="text" name="UserName" size="20"></td>
</tr>
<tr>
<td><input type="submit" value=" OK! "></td>
</tr>
</table>
</form>
</body>
</html>
3.asp
<HTML>
<HEAD><TITLE></TITLE></HEAD>
<BODY>
A Thanks <%=Request.Form("UserName")%><br>
B Thanks <%=Request("UserName")%>
</BODY>
为什么我用Request.Form("UserName")就得不到值呢?
用Request("UserName")就能得到
</HTML>