……form.action="other.htm"
form.submit()

解决方案 »

  1.   

    对asp不熟悉
    担我所知
    session是服务器发送给客户端唯一地
    不可能并且前后属于同一个session
      

  2.   

    your problem has no matter with SESSION.what you can do is just setting the form's action to the processing-page name, such as "a.asp" and the call "form_name.submit()"
      

  3.   

    and the ---> and then
      

  4.   

    <script language="javascript">
    function check(){
    if (document.form1.test.value=="" || document.form1.test.value==null){
        return
    }
    document.form1.action="other.htm";
    document.form1.submit();
    }
    </script>
    <form name="form1" method="post">
    <input name="test" value="" type="text">
    </form>
    <input type="button" name="submit" value="提交" onclick="check()">