473,756 Members | 8,034 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Problem with incomplete page and blank explorer

Hello. First of all, I'm working in an ASP.NET 1.1 project, which has a
large page (due to client requirements, a huge page is needed to process the
information, and it has a lot of interactivity with the user, so that if
some value changes, the screen refresh showing some other data, or a grid,
and so on). This is working well (but slow, but this is not the problem
right now).
The problem is that, randomly, opening the page, or refreshing it due to a
postback, the explorer gets a blank page, and the content is never rendered
(only if the F5 or back is pressed the content refresh).

Some guides:

The application is built to run with Internet Explorer only, so we cannot
test the problem with Firefox or another browser.
We have the latest patchs and service packs applied (I've read some problems
occured when using Internet Explorer without some patchs).
The problem is difficult to reproduce. But some people here is testing the
system, so we get some feedback of them when using and having the error.
When the page is in that state, the cursor is in waiting state when the
mouse is over the title bar.
Doing a "view source" command, shows the page, but it is incomplete (at
random places).
Cutting the view source text and pasting in a text file, we get a file size
smaller that the page size got with the "properties " in the page. (This
means to me that the page has not finalized transmitting the content
completely)
We have some dropdownlists in the page, some of them have lots of data, so
we cut the data in them so to discard the problem. Keep on failing.
In one test, we changed the http 1.1 protocol (default in Internet
Explorer), to http 1.0, so the page transmit syncronously and not using
chunked encoding. (The problem persisted, but it was less often... But
persisted)
Other thing that we tested is disabling the compression in the IIS. (but
didn't work)

Any other clues?

Thank you very much

Daniel Alvarez
Inworx IT Solutions
http://www.inworx.com
Buenos Aires
Argentina
Aug 28 '06 #1
1 3542
hi Daniel,
my guess is that there are intermittent network problems between the client
and web server. the problem may not manifest with other web sites because
the pages are probably much smaller. is there anything common between the
users reporting the problem? i.e. VPN, hardware, modem type, location,
anti-virus software, firewalls?
do all the network cards have the correct and most up-to-date drivers? i
know it sounds like a long shot but it is a possibility, a corrupt packet on
the network could cause the network card to hang etc.

how about the server, is it under heavy stress? you could leave the
performance monitor running for a while. i wonder what the HTTP status
codes of the failed page loads are. it may or may not be practical to look
at such detail.

i've also heard of proxy servers that interfere with asp.net page output,
corrupting the viewstate, but this usually produces an exception so i guess
it's not related.

i hope this provides you with some areas to look at in more detail. i'd be
interested to hear if you make any progress.
tim

------------------------------------------
blog: http://tim.mackey.ie

"Daniel Alvarez" <al************ @gmail.comwrote in message
news:u5******** ******@TK2MSFTN GP04.phx.gbl...
Hello. First of all, I'm working in an ASP.NET 1.1 project, which has a
large page (due to client requirements, a huge page is needed to process
the
information, and it has a lot of interactivity with the user, so that if
some value changes, the screen refresh showing some other data, or a grid,
and so on). This is working well (but slow, but this is not the problem
right now).
The problem is that, randomly, opening the page, or refreshing it due to a
postback, the explorer gets a blank page, and the content is never
rendered
(only if the F5 or back is pressed the content refresh).

Some guides:

The application is built to run with Internet Explorer only, so we cannot
test the problem with Firefox or another browser.
We have the latest patchs and service packs applied (I've read some
problems
occured when using Internet Explorer without some patchs).
The problem is difficult to reproduce. But some people here is testing the
system, so we get some feedback of them when using and having the error.
When the page is in that state, the cursor is in waiting state when the
mouse is over the title bar.
Doing a "view source" command, shows the page, but it is incomplete (at
random places).
Cutting the view source text and pasting in a text file, we get a file
size
smaller that the page size got with the "properties " in the page. (This
means to me that the page has not finalized transmitting the content
completely)
We have some dropdownlists in the page, some of them have lots of data, so
we cut the data in them so to discard the problem. Keep on failing.
In one test, we changed the http 1.1 protocol (default in Internet
Explorer), to http 1.0, so the page transmit syncronously and not using
chunked encoding. (The problem persisted, but it was less often... But
persisted)
Other thing that we tested is disabling the compression in the IIS. (but
didn't work)

Any other clues?

Thank you very much

Daniel Alvarez
Inworx IT Solutions
http://www.inworx.com
Buenos Aires
Argentina


Aug 28 '06 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
3532
by: wk6pack | last post by:
Hi, I have an asp page that I would like to do paging. The problem I'm running into is that the same page that prints to the output is also recieving data from the previous page for query parameters for the sql string. When I click on the next page, it queries itself and loses all the query parameter information from the parameter page and brings back all the records.
7
2309
by: Aaron Prohaska | last post by:
I have just run into a problem where I have a page that posts back to itself to execute code, except when the page does the post back it somehow executes code that is in our home page for the site. The only reason I know that is happening is because I keep track of the pages executed by the user to see how they have traversed the site. Has anyone every seen anything like this before? Regards, Aaron Prohaska
11
1852
by: Jonny | last post by:
Netscape 7.02 is giving me a headache with a downloaded snow script. Starting with a blank page, I inserted the script and checked it in IE 6 and Netscape 7.02. Everything worked and looked fine. A check on CPU usage (Windows Task Manager>Performance) gave a 0% to 2% reading for both browsers on a Pentium 4, 3.06GHz running XP. As I added text, images, tiled background and so on. I noticed the mouse was becoming jerky in Netscape 7....
11
3600
by: ElmoWatson | last post by:
I tried on the Security newgroup, as well as other places, and haven't gotten an answer yet - - I'm pulling my hair out over this one. I'm trying to get Forms Authentication working.....I can get any requested page to automatically go to the Login.aspx page, AND, the ReturnURL querystring is correct in the address bar, but no matter what, I can't get it, once the user is authenticated, to redirect to the new page. It ALWAYS refreshes the...
1
1436
by: MrMike | last post by:
Hi. I have an aspx page which displays data on about the top 1/3 of the page, and the remaining 2/3 of the page is blank. The page is formatted so that my users can print the page to special-sized labels of the same dimensions. However, whenever my users print, Internet Explorer sends the entire page (including the blank 2/3 of the page) to the printer, and therefore the printer prints out 1 label (containing the contents of the...
6
13235
by: siricharan82 | last post by:
Hi All, I have a problem that internet explorer home page was disabled by a virus site. Even though I tried in i.e from tools menu -->internet options -->home page -- address is set by a virus. so when am using explorer that web page is automatically opening.
8
3353
by: rn5a | last post by:
I have a HTML page named Index.html which is divided into 3 frames. The URL of 2 of the frames are HTML pages but the 3rd frame houses a ASP page. Now when I go to Windows Explorer, navigate to the folder in which the all the 4 files (3 HTML + 1 ASP) reside & select Index.html (by clicking with the mouse or by using the arrow keys on the keyboard), strangely the Windows "File Download" dialog box (with 'Open', 'Save', 'Cancel', 'More...
0
10040
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9846
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9713
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8713
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7248
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6534
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5142
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5304
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3359
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.