全屏网页上的ASP NET滚动条?

时间:2019-02-05 23:11:39

标签: asp.net web-applications .net-core

enter image description here

所有的asp dotnet新项目都使全屏网页不是真正的全屏,而是比全屏短两到三个像素,因此滚动条显示出来,并且在使用滚轮时页面会摆动

如何更改此页面以适合浏览器?

谢谢

1 个答案:

答案 0 :(得分:1)

我已经在堆栈流本身中找到了答案,解决方案是使用Java脚本设置网页的大小。

$(document).ready(function() {      // Wait for the HTML to finish loading.
  var resize = function() {
    var height = $(window).height();  // Get the height of the browser window area.
    var element = $("body");          // Find the element to resize.
    element.height(height);           // Set the element's height.
  }
  resize();
  $(window).bind("resize", resize);
});

How do you make an HTML page fit the web browser size?