<input type=hidden name="" value="">

解决方案 »

  1.   

    我现在的做法是:
    <form action="b.asp" method="post" target="_blank">
    <input type="text" name="text1" size="20">
    <input type="text" name="text2" size="20">
    ...
    <textarea name="textarea " cols="60" rows="10"></textarea>
    </form>
    怎么样做使b.asp不出现工具栏及地址栏。
    谢谢
      

  2.   

    在 b.asp 里用脚本控制控制if(window.name != 'win'){
      window.open(this.location,'win','...........')
      window.openner=null;
      window.close();
    }
      

  3.   

    在 b.asp 里用脚本控制控制if(window.name != 'win'){
      window.open(this.location,'win','...........')
      window.openner=null;
      window.close();
    }
      

  4.   

    <script>
    var NewWin = null;
    function WinOpen(url)
    {       
            if (!NewWin || NewWin.closed)
            {
                    NewWin = LoadWin(url, 'win_poll', 600, 300);
            }else
            {
                    NewWin.focus();
            }
    }
    function LoadWin(url, name, width, height) 

    var str = "scrollbars,resizable,height=" + height + ",innerHeight=" + height + ",width=" + width + ",innerWidth=" + width; 
    if (window.screen) 

    var ah = screen.availHeight - 30; 
    var aw = screen.availWidth - 10; 
    var xc = (aw - width) / 2; 
    var yc = (ah - height) / 2; 
    str += ",left=" + xc + ",screenX=" + xc; 
    str += ",top=" + yc + ",screenY=" + yc; 
    }
    return window.open(url, name, str); 
    }
    </script>
    <form method=get>......<input name="poll" type="button" value="查看"  class="button"  onclick="javascript:openwindow('b.asp','anyname',600,300)"></form>