如何让新打开的窗体全屏
在输入用户名成功登录之后,弹出一个新页面,怎样让这个页面全屏化(没有菜单栏、工具栏、状态栏等)?但是不要用 window.open() 这种方式,因为必须要在登录成功后让这个页面自动全屏化
--------------------编程问答-------------------- 我记得是有一种方法,但抱歉我忘了,百度搜索一下吧 --------------------编程问答-------------------- 用脚本控制 --------------------编程问答-------------------- 用JS控制吧 --------------------编程问答-------------------- 不用脚本你怎么弹出窗体?? --------------------编程问答-------------------- 脚本控制! 百度知道! --------------------编程问答-------------------- 怎样让这个页面全屏化(没有菜单栏、工具栏、状态栏等)? 这个就要用window.open来实现了.
在后台可以用:
string str="window.open ('page.html', 'newwindow', 'height=100, width=400, top=0, left=0, 易做图=no, menubar=no, scrollbars=no, resizable=no,location=n o, status=no')";
this.ClientScript.RegisterStartupScript(this.GetType(), "test", str);
改下高度和宽度
--------------------编程问答-------------------- 6楼怎么来获取不同电脑的高度和宽度(请说明详细方法) --------------------编程问答-------------------- <form>
<div align="center">
<input type="BUTTON" name="FullScreen" value="全屏显示" onClick="window.open(document.location, 'big', 'fullscreen=yes')">
</div>
</form> --------------------编程问答-------------------- 在打开的页面里面 输入
<script language="JavaScript">
self.moveTo(0,0)
self.resizeTo(screen.availWidth,screen.availHeight) //screen.availWidth 屏幕宽度
</script> --------------------编程问答-------------------- window.open ("http://www.xxx.com/", "popwindow0", "height=100, width=330, top=20, left=15, fullscreen=1"); --------------------编程问答-------------------- <script language="JavaScript">
self.moveTo(0,0)
self.resizeTo(screen.availWidth,screen.availHeight) //screen.availWidth 屏幕宽度
</script> --------------------编程问答-------------------- [code=C<object id=hh1 classid="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11">
<param name="Command" value="Minimize"> </object>
<object id=hh2 classid="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11">
<param name="Command" value="Maximize"> </object>
<OBJECT id=hh3 classid="clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11">
<PARAM NAME="Command" VALUE="Close"> </OBJECT>
<input type=button value=最小化 onclick=hh1.Click()>
<input type=button value=最大化 onclick=hh2.Click()>
<input type=button value=关闭 onclick=hh3.Click()> #]
[/code]
以上代码只适应于IE
补充:.NET技术 , ASP.NET