473,795 Members | 2,929 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 4933

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\admi nscripts directory to solve the problem:

cscript adsutil.vbs set w3svc/site#/uploadreadahead size 200000

and set the SSLAlwaysNegoCl ientCert value by issuing the following
command:

cscript adsutil.vbs set w3svc/site#/SSLAlwaysNegoCl ientCert 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\admi nscripts directory to solve the problem:

cscript adsutil.vbs set w3svc/site#/uploadreadahead size 200000

and set the SSLAlwaysNegoCl ientCert value by issuing the following
command:

cscript adsutil.vbs set w3svc/site#/SSLAlwaysNegoCl ientCert 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
2635
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 "document.getElementById('tabid').style.display='none';" in the onclick event and setting the encapsulating table's ID to 'tabid'. I was wondering if this or some other similar approach that could possibly be planted globally in my pages in the onsubmit validation
2
3250
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 the result set from the DataReader to be dumped into a DataList and displayed on the page. I already know that my data, the stored procedure, and the database connectivity all work correctly because I have outputted all this data to a dataGrid...
2
2232
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 columns. I perform regular expression validations in the EditItemTemplate for the fields that require such validation. The datagrid is inside a div tag to make it scrollable. I have implemented the solution to freeze header for this grid - the...
3
3154
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). Then I want to use the mouse buttons to page up or page down (left and right buttons), or exit (double click). Can someone point me in the right direction? I'm new to VB. Thanks!
1
2439
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 scripts like phpMyAdmin or Nucleus fail. When accessing a database or table (I don't really know when PHP crashes) PHP just returns a blank screen (HTML source code is blank as well). For instance phpMyAdmin: With only one server configured I can...
2
3462
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 both, the screen where it asks me to accept or decline the user agreement is blank, so I have no way of accepting. All I can do is click the X (close) button, which then tells me that I have declined the agreement and the program will close. Another...
7
5870
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 what is causing it to appear. Does any one have any ideas of what to look for? The code has <table><tr><tdtags. There are no <formand no <p>. I hope I have given you enough information, and thank you for your help.
2
3230
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", $formName); // 06-22-07 - the next commands try to import all the functions that the
4
2105
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 keeps on returning blank. I've checked that I have all my brackets and semicolons placed correctly. I've added <?php //turn on error reporting ini_set('display_errors',1); ERROR_REPORTING(E_ALL); ?>
0
9522
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10448
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...
0
10217
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
7544
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
6784
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
5440
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
5566
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4114
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3730
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.