G
Geoff
I have a ASPX website that returns a PDF - the coding it similar to another
example in this group posted by Geshel.
It works fine, but recently we changed the user's IE Settings so that they
now go through a proxy (our ISA firewall). This was required for another
application.
However now my application does not run correctly. Instead of opening as it
did before, it displays a dialog with two choices (save or cancel). If I
flush the local IE cache it will work (one time), and then back to save or
cancel.
The basic code in the page_load trigger is (much omitted for better reading)
....
Response.ContentType = "application/pdf"
....
Response.BinaryWrite(ArchivedFile)
Response.End()
If I manually remove the Proxy from my IE settings it works fine.
I have looked into
http://msdn.microsoft.com/en-us/library/system.web.httpcacheability.aspx
Which talks about controlling the user cache, but nothing seems to help.
Anybody have an idea why have a proxy set on IE (6.0 by the way) causes this
basic ASPX page to stop working as expected?
example in this group posted by Geshel.
It works fine, but recently we changed the user's IE Settings so that they
now go through a proxy (our ISA firewall). This was required for another
application.
However now my application does not run correctly. Instead of opening as it
did before, it displays a dialog with two choices (save or cancel). If I
flush the local IE cache it will work (one time), and then back to save or
cancel.
The basic code in the page_load trigger is (much omitted for better reading)
....
Response.ContentType = "application/pdf"
....
Response.BinaryWrite(ArchivedFile)
Response.End()
If I manually remove the Proxy from my IE settings it works fine.
I have looked into
http://msdn.microsoft.com/en-us/library/system.web.httpcacheability.aspx
Which talks about controlling the user cache, but nothing seems to help.
Anybody have an idea why have a proxy set on IE (6.0 by the way) causes this
basic ASPX page to stop working as expected?