如何以编程方式在 ASP.NET 应用程序中全屏打开浏览器?

发布于 2024-12-05 15:51:06 字数 181 浏览 0 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

晨与橙与城 2024-12-12 15:51:06

操纵 Web 应用程序窗口大小的唯一方法是通过 JavaScript,因此这需要成为您的页面/站点的要求。即使在这里,您也面临三个挑战:

  1. 某些浏览器提供了一个选项来禁用 javascript 的这一特定功能
  2. 我不记得有什么方法可以从 javascript 中查看屏幕到底有多大,以及该空间有多少将被chrome浏览器占用。我怀疑这是不可能知道的。
  3. 无法隐藏所有浏览器镶边。

这些挑战的部分原因是出于安全原因,以防止恶意网站劫持用户的屏幕,因此它们将无法解决。

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:

  1. Some browsers provide an option to disable this particular feature of javascript
  2. I can't recall a way off the top of my head to see from javascript how big the screen really is, and how much of that space will be taken up by the browser chrome. I suspect it's not possible to know.
  3. There is no way to hide all of the browser chrome.

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.

时光礼记 2024-12-12 15:51:06

我建议将 JavaScript 函数嵌入到 ASP.NET 代码中。使用 window.open() 然后传递适当的参数。我使用了类似将 javascript 通过 Response.Write 嵌入到 .net 中的方法。下面的示例方法执行 window.open。只需推送正确的参数和 URL 等。

顺便说一句,参数是:'http://URL'、'Title'、'type=fullWindow、fullscreen、scrollbars=yes'

private void MessageBox(string URL, string parameters)
 {
     if (!string.IsNullOrEmpty(URL))
     {
         Response.Write
      ("<script type=\"text/javascript\" language=\"javascript\">");
         Response.Write("window.open('" + URL + parameters + "');");
         Response.Write("</script>");
     }
 }

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'

private void MessageBox(string URL, string parameters)
 {
     if (!string.IsNullOrEmpty(URL))
     {
         Response.Write
      ("<script type=\"text/javascript\" language=\"javascript\">");
         Response.Write("window.open('" + URL + parameters + "');");
         Response.Write("</script>");
     }
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文