Use of cookies and the privacy.

  • Thread starter Thread starter Johan Goris
  • Start date Start date
J

Johan Goris

I have made a website (big part copied) and it works with cookies like :
Response.Cookies["ASPNETCommerce_FullName"].Value = blabla ...

This works fine when the browser ,internet option , pravacy is set to low.

But it will not work with the more common settings like "medium."

What do I have to do to let this work with browser with a higher privacy. Or
do you see another possiblity to make my web-site work.

(You have to login to the website and then you can order goods and so on...)

thank you
 
What do I have to do to let this work with browser with a higher privacy.
Or do you see another possiblity to make my web-site work.

Well, obviously, you shouldn't use cookies. You can use Session State, which
sets a Session cookie (most browsers allow Session cookies), or a
server-side database.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
You can lead a fish to a bicycle,
but you can't make it stink.

Johan Goris said:
I have made a website (big part copied) and it works with cookies like :
Response.Cookies["ASPNETCommerce_FullName"].Value = blabla ...

This works fine when the browser ,internet option , pravacy is set to low.

But it will not work with the more common settings like "medium."

What do I have to do to let this work with browser with a higher privacy.
Or do you see another possiblity to make my web-site work.

(You have to login to the website and then you can order goods and so
on...)

thank you
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top