asp.net页面怎么全屏显示
asp.net页面如何全屏显示用VS2010开发的ASP.NET页面,如何能够实现打开页面就全屏显示?[解决办法]引用:用VS
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% 如果你的图片不够宽就没办法