问题描述
我先申明一下,我是asp.net初学者哈在aspx的html中,我编如下代码:<%@PageLanguage="C#"AutoEventWireup="true"CodeFile="Default.aspx.cs"Inherits="_Default"%><!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><headrunat="server"><title>无标题页</title></head><body><formid="form1"action=Response.aspx><div><asp:LabelID="Label1"runat="server"Text="姓名"></asp:Label><inputid="Text1"name="txtn"type="text"/> <br/><asp:LabelID="Label2"runat="server"Text="密码"></asp:Label><inputid="Text2"name="txtp"type="password"/><inputid="Submit1"name="btnSubmit"type="submit"value="submit"/></div></form></body></html>在cs文件中,我编如下代码:Response.Write("你的姓名是:"+Request.Form["txtn"]);Response.Write("你的密码是:"+Request.Form["txtp"]);this.Label1.Text=Request.Form["txtn"];this.Label2.Text=Request.Form["txtp"];很简单的吧!但我却得不到参数!为设么啊?
解决方案
解决方案二:
<formid="form1"method="post"action="Response.aspx">