473,394 Members | 1,787 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

ASP.NET Blank Screen

We have a page that displays a datagrid with quite a bit of data in it.
We have a few comb-boxes that we filter data on when we click the
search button. I can change the combo-boxes and click the search
button, but if during that time I go and look at an email or get a cup
of water, I come back and click the search button I get a white screen
or blank screen. I checked my session and it is still valid. If I
close the page and re-open it it works fine. It only stops working
when it has been sitting idle for 60 secs or so. Does anybody know
what causes this to produce the blank screen after a period of
inactivity?

Thanks for your time.

Eric

Dec 14 '06 #1
2 4916

Eric wrote:
We have a page that displays a datagrid with quite a bit of data in it.
We have a few comb-boxes that we filter data on when we click the
search button. I can change the combo-boxes and click the search
button, but if during that time I go and look at an email or get a cup
of water, I come back and click the search button I get a white screen
or blank screen. I checked my session and it is still valid. If I
close the page and re-open it it works fine. It only stops working
when it has been sitting idle for 60 secs or so. Does anybody know
what causes this to produce the blank screen after a period of
inactivity?

Thanks for your time.

Eric
It turns out that we needed to issue the following 2 statements from
the c:\inetpub\adminscripts directory to solve the problem:

cscript adsutil.vbs set w3svc/site#/uploadreadaheadsize 200000

and set the SSLAlwaysNegoClientCert value by issuing the following
command:

cscript adsutil.vbs set w3svc/site#/SSLAlwaysNegoClientCert true

where site# is the identifier number associated with the website.
We found web pages in the www.microsoft.com/technet section explaining
the problem. It turns out we were getting a HTTP 413 error, but the
browser was displaying a blank page. We used a troubleshooting tool to
tell us the error.
Thanks,

Eric

Dec 19 '06 #2

Eric wrote:
We have a page that displays a datagrid with quite a bit of data in it.
We have a few comb-boxes that we filter data on when we click the
search button. I can change the combo-boxes and click the search
button, but if during that time I go and look at an email or get a cup
of water, I come back and click the search button I get a white screen
or blank screen. I checked my session and it is still valid. If I
close the page and re-open it it works fine. It only stops working
when it has been sitting idle for 60 secs or so. Does anybody know
what causes this to produce the blank screen after a period of
inactivity?

Thanks for your time.

Eric
It turns out that we needed to issue the following 2 statements from
the c:\inetpub\adminscripts directory to solve the problem:

cscript adsutil.vbs set w3svc/site#/uploadreadaheadsize 200000

and set the SSLAlwaysNegoClientCert value by issuing the following
command:

cscript adsutil.vbs set w3svc/site#/SSLAlwaysNegoClientCert true

where site# is the identifier number associated with the website.
We found web pages in the www.microsoft.com/technet section explaining
the problem. It turns out we were getting a HTTP 413 error, but the
browser was displaying a blank page. We used a troubleshooting tool to
tell us the error.
Thanks,

Eric

Dec 19 '06 #3

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

Similar topics

14
by: charlie_M | last post by:
Is there a way to blank the screen in a FORM's onsubmit=... to blank the screen for the user?? I asked this before and got a way to blank a table by id with ...
2
by: Todd | last post by:
I am somewhat new to ASP.NET and I am probably overlooking some basic rule that's causing my error. Anyways, here's the scoop: I am using a DataReader to access a SQL stored procedure. I want...
2
by: Amir | last post by:
I really hope someone can explain this behavior. I have spend quite a bit of time and tried a bunch of things, so far nothing has worked. I have a page on which I have a datagrid with template...
3
by: shishuda91 | last post by:
I'd like to display scrolling, word-wrapped, centered text on a blank white screen with no window borders, nothing. Just a pure white screen with big letters in the middle (in an invisible box)....
1
by: Raul Elms | last post by:
Hi, I'm running Apache2 together with the php and mysql modules on an opensuse 10.1 machine. Most scripts run well, I can connect and query databases without any problems. But some well known...
2
tdw
by: tdw | last post by:
I have tried to search everywhere for solutions to this. My problem is that on some programs, certain windows are blank white. An example: I installed Adobe Acrobat 8, also Adobe Reader 8. On...
7
by: Joy M | last post by:
Hello, I am modifying an .asp file and I noticed that the top line on the screen is blank. I would like to remove this line, and push everything up to the top of the screen, but I don't know...
2
by: Lawrence Krubner | last post by:
Imagine a template system that works by getting a file, as a string, and then putting it through eval(), something like this: $formAsString = $controller->command("readFileAndReturnString",...
4
by: koager | last post by:
I know there have been various questions about blank screens from php but I've looked around and they aren't helping me at all. I wrote a .php page and put it up on the hosting server but the page...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
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,...
0
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...
0
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...

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.