IE Privacy Setting causes weird issue

  • Thread starter Thread starter Bishop
  • Start date Start date
B

Bishop

We have multiple sites with different products that redirect (using
response.redirect) to a single SSL checkout site. When redirecting, it
passes the CartID across the address line and the Gridview binds to that
cart for the rest of the checkout process. For some reason when privacy
settings are set to High on the client browser, the gridview displays as
empty. It acts as if the CartID is not getting passed along the address
line but I put some code in the page_init function to display the CartID
using the request.querystring function and it displays it correctly. This
has got me stumped. Any ideas?
 
with high, cookies are disabled. so you are probably losing session
access. you can switch to cookieless sessions.

-- bruce (sqlwork.com)
 
Back
Top