The Following tips :
1. The simplest way: Open IE, select the option Tools - Internet Options. On the Privacy tab, change the level setting to Low. Close IE and reopen, then your application will run normally. But this is inefficient way, because they have to change the IE settings on all clients.
2. This method is also simple, is adding one line of code on pages that do create session / cookies.
PHP:
header('P3P:CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"');
ASP.NET:
HttpContext.Current.Response.AddHeader("p3p","CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\"");
The second is better, and no need to do the first.
Guaranteed your application will run properly.
Ok, may it helps
Thanks
great!
ReplyDelete