我刚学asp.net,照着书上的例子写了个3.html
<form method="PCST" action="http://localhost/wl/TextBoxResult.aspx">
  NAME:<input type="text" name="Name" size="20"><br>
  ADDRESS:<input type="text" name="Address" size="20"><br>
  <input type="submit" value="Submit" name="B1">
  <input type="reset" value="Reset" name="B2">
</form>然后在虚拟目录指示的文件夹中写了TextBoxResult.aspx
<%
  Dim strName as String
  Dim strAddress as String
  strName=Request.Form("Name")
  strAddress=Request.Form("Address")
%>The name that was submitted was:<font color="red">
  <%=strName%></font><br>
The address that was submitted was:<font color="red">
  <%=strAddress%></font><br>为什么我每次点submit后只出来两行The name that was submitted was:
                                The address that was submitted was:
而我想取得的strName和strAddress不显示出来呢~~看这里应该传上去了啊~~http://localhost/wl/TextBoxResult.aspx?Name=dd&Address=dd&B1=Submit谢谢大家!!~