你要往哪提交啊 ?往哪提交 去哪看<form name = "form1" method="post" action="2.jsp">

解决方案 »

  1.   

    <%
      names=Request.Form("names")
        Response.Write names&"<br>"
      age=Request.Form("age")
         Response.Write age&"<br>"
    %>
    <HTML>
    <BODY>
    <form name=form1 method="post">
       姓名:<input name=names value='张三'>
       年龄:<input name=age value='50'>
       <input name=dd value='提交' type=button onclick=ss>
    </form>
    </BODY>
    </HTML>
    <script>
       function ss()
          {
             if(confirm('你确定提交吗?'))
                 { 
                    document.form1.submit()
                 }
          }
    </script>
      

  2.   

    谢谢楼上
    njtucomputer(冬虫草) liberationxin(高山) 
    如客户提交表单后,客户的表单内容放在那里的?
      

  3.   

    <td colspan="2"><input name="Submit" type="submit" 
    value="确定提交" />
        </td>
    提交后内容在哪?