Random blank pages - Nenefta |
08-Mar-07 09:55:44
|
Hi all,
we're working with asp on IIS 6.0 on Windows 2003.
Every now and then, when I request a certain page, the response is
completely blank. The request gets executed on the server however, so
data is being added to a database and email is sent. I tried putting
response.write "hello" and response.flush as the first two lines to no
avail.
I've searched the web and have come up with issues for IIS 4 and so
on( e.g. http://www.kbalertz.com/Q188352/Caching.Cause.Errors.Blank.Pages.aspx)
I was thinking there could be some kind of caching going on, so I put
this in my asp file:
Response.AddHeader "pragma", "no-cache"
Response.AddHeader "cache-control", "private, no-cache, must-
revalidate"
Response.ExpiresAbsolute = Now() - 2
Response.CacheControl = "no-cache"
(anything to keep it from caching...)
Anyone any direction?
Greets,
Nenefta |
 |
| |