Gazing into my crystal ball I observed "Penny" <>
writing in news::
>
>>
>> I would think if you coded the shopping cart page to read the session
>> variables to populate the fileds and prevented caching on the page you
>> would see the result you want. Perhaps using a pragma:nocache header
>> would do it, you can use a meta tag for this:
>>
>> <meta http-equiv="pragma" content="nocache">
>>
>> There are other ways to disable page caching as well.
>>
> Jeff,
>
><meta http-equiv="pragma" content="nocache"> doesn't work either. It still
> allows the page to redirect to the previous version of itself.
>
> Penny.
IIRC the Meta element is controled by the browser and the browser can
disregard it. AFAIK you have to do it server side, eg:
Response.Expires = 60
Response.Expiresabsolute = Now() - 1
Response.AddHeader "pragma","no-cache"
Response.AddHeader "cache-control","private"
Response.CacheControl = "no-cache"
--
Adrienne Boswell
http://www.cavalcade-of-coding.info
Please respond to the group so others can share