javascript设置asp.net程序开始运行时ie最大化显示

  将以下js语言放到起始页面的head中,然后运行,就做到了程序起始运行时最大化显示。

<script type="text/javascript" language="JavaScript1.2">  
    <!--  
    // Auto maximize window script - By Nick Lowe (nicklowe@ukonline.co.uk)  
    // Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/  
    window.moveTo(0,0);  
    if (document.all) {  
      top.window.resizeTo(screen.availWidth,screen.availHeight);  
    }  
    else if (document.layers||document.getElementById) {  
      if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){  
        top.window.outerHeight = screen.availHeight;  
        top.window.outerWidth = screen.availWidth;  
     }  
   }  
//-->  
</script>

原文地址:https://www.cnblogs.com/yuxuetaoxp/p/1811885.html