怎么接收啊

解决方案 »

  1.   

    static void Main(string args) //args就是参数
    {
    Application.Run(new Form1());
                       }

      

  2.   

    Lisbi() :
       能写得详细一些吗?在jsp中的代码和在.net中的代码都能提供一下吗?
      

  3.   

    QueryString 和 Form ,无界限。
      

  4.   

    a.jsp
    <html>
         <head></head>
         <body>
              <form method=post action=b.aspx?q=5>
                 <input type="text" name="p" id="p" value="6">
                 <input type="submit" value="提交">
              </form>
         </body>
    </html>
    b.aspx
    void Page_Load(object sender,EventArgs e)
    {
         Response.Write(Request.QueryString["q"].ToString());
         Response.Write("<br/>");
         Response.Write(Request.Form["p"].ToString());
    }
      

  5.   

    楼上正解
    -------------------------------------------------------------------------
    .Net技术讨论群14272327,欢迎爱好c#和asp.net的同志加入~队伍正在不断壮大中...