L
Liming
Hi,
I have a multiview (with 10 views inside). Now on View2, I ask the
user to uplaod a file and click Save to go to View3 and once they get
to view3? If the user hits my "previous" button, View2 needs to display
the filename of the uplaoded file.
Here is the problem.
1. In Firefox 1.5, in view3, if the user clicks "browser back" instead
of my "preivious" button, it'll retrieve a cached version (so my code
to redisplay the uploaded file name was not executed at all)
2. In IE 6.0, if the user clicks "browser" back, it simply says, the
page content is expired. Nothing gets displayed.
I played around with the
<%@OutputCache Duration="1" VaryByParam="None" %>
didn't work and then
Response.Cache.SetCacheability(HttpCacheability.NoCache)
that didn't work either.
What's going on? Thanks
Liming
I have a multiview (with 10 views inside). Now on View2, I ask the
user to uplaod a file and click Save to go to View3 and once they get
to view3? If the user hits my "previous" button, View2 needs to display
the filename of the uplaoded file.
Here is the problem.
1. In Firefox 1.5, in view3, if the user clicks "browser back" instead
of my "preivious" button, it'll retrieve a cached version (so my code
to redisplay the uploaded file name was not executed at all)
2. In IE 6.0, if the user clicks "browser" back, it simply says, the
page content is expired. Nothing gets displayed.
I played around with the
<%@OutputCache Duration="1" VaryByParam="None" %>
didn't work and then
Response.Cache.SetCacheability(HttpCacheability.NoCache)
that didn't work either.
What's going on? Thanks
Liming