日期:2014-05-17  浏览次数:20469 次

asp.net页面如何全屏显示
用VS2010开发的ASP.NET页面,如何能够实现打开页面就全屏显示?

------解决方案--------------------
引用:
用VS2010开发的ASP.NET页面,如何能够实现打开页面就全屏显示?

你的是怎么个全屏法??

你浏览器打开页面不就是全屏么?你想把浏览器的也隐藏起来?
------解决方案--------------------
(2)实现真正的全屏   
这种方法需按Alt+F4才能关闭。   
代码如下:   
<html>   
<head>   
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">   
<title>全屏显示</title>   
</head>   
<body background=#00ccff>   
<table border="1" width="100%">   
<tr>   
<td>   
<p align="center">   
<input type="BUTTON" name="FullScreen" value="全屏显示" onClick="window.open(document.location, 'www_helpor_net', 'fullscreen')">   
</td>   
</tr>   
</table>   
</body>   
</html>   
------解决方案--------------------
http://www.cnblogs.com/Tonyyang/archive/2011/08/08/2131086.html
------解决方案--------------------

function   toFull(){   
  if(window.name=="fullscreen")return;   
  var a =window.open("","fullscreen","fullscreen=yes")   
  a.location = window.location.href   
  window.opener=null   
  window.close()   
}   

<body onload="toFull()">
当前页全屏
------解决方案--------------------
100%   如果你的图片不够宽就没办法