如何以编程方式在 ASP.NET 应用程序中全屏打开浏览器?
我正在 ASP.NET 4.0 中制作一个 Web 应用程序。由于某种原因,我需要始终以全屏方式打开网站。在浏览器中打开网站然后切换到全屏是一项乏味的任务。
有没有办法以编程方式全屏打开浏览器(最好是 IE9 或 Google Chrome)? 我可以在默认页面的 Page_Load() 方法中添加一些代码来将浏览器切换到全屏吗?
I am making a web application in ASP.NET 4.0. For some reason I need to open a web site always in full screen. It is a tedious task to open a web site in browser and then toggle to fullscreen.
Is there any way to open the browser (preferably IE9 or Google Chrome) in full screen programmatically?
Can I put some code in the Page_Load() method of my default page that toggles the browser to full screen?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
操纵 Web 应用程序窗口大小的唯一方法是通过 JavaScript,因此这需要成为您的页面/站点的要求。即使在这里,您也面临三个挑战:
这些挑战的部分原因是出于安全原因,以防止恶意网站劫持用户的屏幕,因此它们将无法解决。
The only way to manipulate the window size for a web app is through javascript, and so that will need to be a requirement for your page/site. Even here, you have three challenges:
Parts of those challenges are there for security reasons, to prevent malicious web sites from hijacking user's screens, and therefore they will be no workaround.
我建议将 JavaScript 函数嵌入到 ASP.NET 代码中。使用 window.open() 然后传递适当的参数。我使用了类似将 javascript 通过 Response.Write 嵌入到 .net 中的方法。下面的示例方法执行 window.open。只需推送正确的参数和 URL 等。
顺便说一句,参数是:'http://URL'、'Title'、'type=fullWindow、fullscreen、scrollbars=yes'
I'd suggest embeding a javascript function into your ASP.NET code. use window.open() and then pass the proper parameters. I used something comparable of embedding javascript into .net with Response.Write. This example method below does window.open. Just push the proper parameters and URL, etc.
The parameters btw are : 'http://URL', 'Title' , 'type=fullWindow, fullscreen, scrollbars=yes'