Z
ZagrebMike
On our (intranet) web site we have an ASP page that runs a report which
serves up the results in a dynamic Excel file (i.e it specifies
Response.ContentType = "application/vnd.ms-excel"). This works fine for most
people. One user is having a problem, though: she generates the report once,
and it works fine. If she changes the parameters and runs the report again,
it displays the original result. She says it "used to" work OK.
Environment details are:
* MS Windows XP, Professional, Version 2002, Service Pack 2
* IE Version 6.0.2900.2180.xpsp_sp2_gdr.050301-1519
Some further info:
* She's cleared the Internet Explorer cache (Tools -> Internet Options ->
General tab -> Delete Files -> Check “Delete all offline content†-> OK)
* She's asked IE not to cache pages (Tools -> Internet Options -> General
tab -> Settings -> “Check for newer versions of stored pages†is set to
“Every visit to the pageâ€.)
* She doesn’t have a proxy server configured manually (In Tools -> Internet
Options -> Connections tab -> LAN Settings, "Automatically detect settings is
checked"; but "Use automatic configuration script" and "Use a proxy server
LAN" are not checked.
The ASP includes:
Response.CacheControl = "no-cache" 'stop proxy servers caching the
page
Response.Expires = -1 'tell browser page
shouldn't be cached
Response.AddHeader "Pragma", "No-Cache" 'force IE not to cache page
Any help appreciated!
serves up the results in a dynamic Excel file (i.e it specifies
Response.ContentType = "application/vnd.ms-excel"). This works fine for most
people. One user is having a problem, though: she generates the report once,
and it works fine. If she changes the parameters and runs the report again,
it displays the original result. She says it "used to" work OK.
Environment details are:
* MS Windows XP, Professional, Version 2002, Service Pack 2
* IE Version 6.0.2900.2180.xpsp_sp2_gdr.050301-1519
Some further info:
* She's cleared the Internet Explorer cache (Tools -> Internet Options ->
General tab -> Delete Files -> Check “Delete all offline content†-> OK)
* She's asked IE not to cache pages (Tools -> Internet Options -> General
tab -> Settings -> “Check for newer versions of stored pages†is set to
“Every visit to the pageâ€.)
* She doesn’t have a proxy server configured manually (In Tools -> Internet
Options -> Connections tab -> LAN Settings, "Automatically detect settings is
checked"; but "Use automatic configuration script" and "Use a proxy server
LAN" are not checked.
The ASP includes:
Response.CacheControl = "no-cache" 'stop proxy servers caching the
page
Response.Expires = -1 'tell browser page
shouldn't be cached
Response.AddHeader "Pragma", "No-Cache" 'force IE not to cache page
Any help appreciated!