看看javascript吧 有参数可以控制

解决方案 »

  1.   

    window.open("sample.htm",null,"height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");
      

  2.   

    可以利用iframe在iframe中加入页面.在加入的页面中加上
    <script language="javascript">
        function toppage()
        {
    if (self.location != top.location)
    {
    parent.document.all(self.name).height = document.body.scrollHeight + 30;
    }

        }
        
    </script>
    <body onload="toppage()"
      

  3.   

    能否在.net的代码中控制?(使用C#)
      

  4.   

    C#弹出窗口,没见过。这类工作好象一定要WINDOWS。OPEN的吧。
      

  5.   

    客户端的动作不会再服务器端处理的
    用javascript
    window.open("窗口名",null,"height=,width=,status=,toolbar=,menubar=,location=");