文件格式是.aspx
内容
<form id="form1" runat="server" action="chinabank/Send.aspx" method=post>
这样写为什么没有实现跳转呢?在线等待回复....

解决方案 »

  1.   

    在一面加上一个<input type="button" value="跳转" />的按钮,点击这个按钮,看跳转吗
      

  2.   

    纠正一下,应该是<input type="submit" value="跳转" />
      

  3.   

    <form id="form1" runat="server" action="chinabank/Send.aspx" method=post>
    改为
    <form id="form1"  action="chinabank/Send.aspx" method=post>
      

  4.   


    <form id="form1" runat="server" action="Home.aspx" method="post"> <input type="submit" />