thanks for the suggestions, Bruce,
Response.redirect and server.transfer just don't work well with cookies. so
option 1 would not work. We will have to use cookies to get it work.
otherwise, we will have to change the xyz.asp page, which is way too much
work.
the problem we have here seems to be that the aspx page post back to itself,
instead of redirecting to the link. We don't want the form post back to
itself.
Junlia
"Bruce Barker" wrote:
1) if you use server.treansfer, you don't need a cookie, get the data you
pass in the cookie from the posting page
2) if you want the link to work, when render append a random number or guid
to the url (ex xyz.asp?n=16546565656). this make the url unique, so the
cache will not be used.
-- bruce (sqlwork.com)