html中放一个form.action指向一个aspx.
如<form actin="post.aspx">
 <input ...........
</fomr>

解决方案 »

  1.   

    <form actin="post.aspx">
     <input ...........
    </fomr>如果是这样的话,启不是要跳转到pst.aspx那个页去了
    如何让它提交到post.aspx,但不跳转,并刷新这个html页呢?
      

  2.   

    方法.1.用xmlHttp或ajasx提交数据.2.弹出一个小窗口.保存成功后刷新父窗口
      

  3.   

    3.提交到 post.aspx.保存成功后跳转到html
      

  4.   

    提交到 post.aspx,那么如何让post.aspx只做处理来显示页面,处理完后直接转到html页呢?
      

  5.   

    <form actin="post.aspx" target="blank">
     <input ...........
    </fomr>