你可以其實把值保存到一個session中

解决方案 »

  1.   

    可以< % form method="post" action="mynextpage.asp" > 
    < % for each item in request.form % > 
    < input namee="< %=item% >" type="HIDDEN" 
    value="< %=server.HTMLEncode(Request.form(item)) % >" > 
    < % next % > 
    < /form >
      

  2.   

    <script language="javascript"> function FormOpenFind(url1)
     {
     
     if(document.form1.count.value>=1)
     {
      window.open(url1,"Framedown");
      }
    else
    {
     alert("Data Not Found !");
    }
    }
    </script>
    在html中:
    <INPUT type="hidden" name="count" value=<%=count%>>
    在jsp中int  count=Manager.size();其中,Manager是一个Vector()。