不懂什么意思,为什么不先提交到下一页,然后再在下一页redirect到你需要到的页面

解决方案 »

  1.   

    action到下一页然后在action的页面里用redirect重定向
      

  2.   

    提交 -->> action -->> 在action中定向到下一页这样才是合乎逻辑的提交直接进入下一页,还要提交代码进后台,这样跟bs的机制是不合的不过可以用ms的XMLHttp控件局部刷新,这样就可以了
      

  3.   

    在 action 页面中, 完成动作后 response.redirect xxx.asp
      

  4.   

    <form action="" method="post" target="_blank" enctype="multipart/form-data" name="form1">
            <tr>
            <td width="20%" align="right">名称:</td>
            <td colspan="2">
              <input type="text" name="textfield">
            </td>
          </tr>
          <tr>
            <td align="right">上传标志:</td>
            <td colspan="2">
              <input type="file" name="file">
    </td>
          </tr>
          <tr>
            <td height="59">&nbsp;</td>
            <td width="25%">&nbsp;</td>
            <td width="55%"><input type="submit" name="Submit" value="下一步"></td>
          </tr>
          <tr>
            <td>&nbsp;</td>
            <td colspan="2">&nbsp;</td>
          </tr></form>
      

  5.   

    怎么不直接action到下一个页面那、~~~或者可以在处理完毕之后response.redirct不就行了嘛