ASP page is not being displayed completely. When viewing, user cannot scroll to end of page, data is truncated. When viewing the web page source, all of the data is present. When I save the web page source as a html file, then load in browser, all data is scrollable.
note: user can scroll to see most of the data, but not all. Cannot scroll to end of web page.
I’ve seen this bhavio when the ASP page is being sloppy about the HTML it’s producing. For example, I saw this in a page that forgot to put the
tag at the end of each table row. So it looked like
Essentially, browsers allow some sloppiness in the html, so the browsers were able to compensate and display the page “correctly for the first hundred rows or so, but eventually, it got to the point where the browser just stopped processing the page.