473,378 Members | 1,417 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

Why do we have to modify default IE cookie settings here?

Hello, friends,

We developed a web site using asp.net 1.1 and Form Authentication. It works
ok.

However, when our users log into our website through internet, it requires
users to reset their IE cookie settings. For example, for IE 6.0 users, a
user will have to

(1) Click on Tools/Internet Options...,

(2) Go to Privacy tab,

(3) Click on Advanced button,

(4) Check "Override automatic cookie handling" so that IE will accept
First-party Cookies and Third-party Cookies.

This procedure is really annoying to our users.

And, to my knowledge, a lot of websites use cookies but do not require users
to reset their IE cookie settings.

Anything I did wrong? Any ideas? Is there a way to stop this? Thanks a lot.

(Our web site uses another port, not port 80, for http. Will this cause the
problem?)

Feb 21 '07 #1
2 1168
The first party cookies are enabled by default so you do not need to reset
that.
If you planting third-party cookies meaning that they come from different
domain than the page's url shown in address bar then you need to implement
PCP
Privacy compact policy.
Basically page that sets cookie must add to the header something like that.
P3P:CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"
Done with a single line of code
Response.AddHeader("P3P", "CP=\"CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL
UNI COM NAV INT DEM PRE\"");

Does not matter what you make CP equal to. As long as it's something.

If you want to read more about PCP then good luck
http://msdn.microsoft.com/workshop/s...vacypolicy.asp

George.

"Andrew" <An****@discussions.microsoft.comwrote in message
news:8F**********************************@microsof t.com...
Hello, friends,

We developed a web site using asp.net 1.1 and Form Authentication. It
works
ok.

However, when our users log into our website through internet, it requires
users to reset their IE cookie settings. For example, for IE 6.0 users, a
user will have to

(1) Click on Tools/Internet Options...,

(2) Go to Privacy tab,

(3) Click on Advanced button,

(4) Check "Override automatic cookie handling" so that IE will accept
First-party Cookies and Third-party Cookies.

This procedure is really annoying to our users.

And, to my knowledge, a lot of websites use cookies but do not require
users
to reset their IE cookie settings.

Anything I did wrong? Any ideas? Is there a way to stop this? Thanks a
lot.

(Our web site uses another port, not port 80, for http. Will this cause
the
problem?)

Feb 21 '07 #2
Hi, George, thanks, and let me try.

"George Ter-Saakov" wrote:
The first party cookies are enabled by default so you do not need to reset
that.
If you planting third-party cookies meaning that they come from different
domain than the page's url shown in address bar then you need to implement
PCP
Privacy compact policy.
Basically page that sets cookie must add to the header something like that.
P3P:CP="CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL UNI COM NAV INT DEM PRE"
Done with a single line of code
Response.AddHeader("P3P", "CP=\"CAO DSP COR CURa ADMa DEVa OUR IND PHY ONL
UNI COM NAV INT DEM PRE\"");

Does not matter what you make CP equal to. As long as it's something.

If you want to read more about PCP then good luck
http://msdn.microsoft.com/workshop/s...vacypolicy.asp

George.

"Andrew" <An****@discussions.microsoft.comwrote in message
news:8F**********************************@microsof t.com...
Hello, friends,

We developed a web site using asp.net 1.1 and Form Authentication. It
works
ok.

However, when our users log into our website through internet, it requires
users to reset their IE cookie settings. For example, for IE 6.0 users, a
user will have to

(1) Click on Tools/Internet Options...,

(2) Go to Privacy tab,

(3) Click on Advanced button,

(4) Check "Override automatic cookie handling" so that IE will accept
First-party Cookies and Third-party Cookies.

This procedure is really annoying to our users.

And, to my knowledge, a lot of websites use cookies but do not require
users
to reset their IE cookie settings.

Anything I did wrong? Any ideas? Is there a way to stop this? Thanks a
lot.

(Our web site uses another port, not port 80, for http. Will this cause
the
problem?)


Feb 22 '07 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: changed | last post by:
I'm having an inconsistent problem involving cookies. I have attempted to duplicate the OS/browser settings for the remote users in question but I cannot seem to duplicate the problem in any OS...
5
by: | last post by:
I attempted to find the cookie 'Prospect' in my Temp Internet Files in IE6 after I had set it in ASP: Response.Cookies("Prospect").Expires = Date() + 2 Response.Cookies("Prospect")("u_id") =...
1
by: Display Name | last post by:
Used one of these canned scripts to set up a JS quiz but not before having used another canned PHP script for "Tell your friend about this Web page!" sort of thing. Now i've gotta integrate them;...
0
by: D. Shane Fowlkes | last post by:
I have a form with a CheckBoxList which is created from a SQLDataReader. It contains Staff personnel and I use the ID and LogOnName (a string) to build the CBL. All works fine. I also have a...
17
by: Bruno | last post by:
I have a feature that is hosted on a different domain from the primary one in a frame, and need to retain values in a cookie. example: A web page at one.com contains a frame which has a page...
5
by: SJ | last post by:
Hi, In my website, i have a cookie that allows the user to remain logged in for upto 90days. So I'm setting the cookie expiration time to 90 days in the future from the time the user logs in....
3
by: Groove | last post by:
Hey guys - hoping you can help me out here. I'm using asp.net 2 (VB) and trying to set and retrieve values from a cookie. I've done this a few times before w/o a problem but I seem to be...
5
by: gibble | last post by:
Hi, I am going crazy. We get a hundred or so of these errors each day and while the fix would seem obvious, the error does not include a line number! -------------------- Process...
1
by: dhochee | last post by:
I understand that settings stored in the app.exe.config file and accessed via Properties.Settings.Default are only available within an app domain, but I'm confused about the best way to handle...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.