i want to Clear Web browser control cookies before the new page load .Any way to clear cookies problematically in wp7
Asked
Active
Viewed 995 times
2 Answers
3
For Windows phone 8, there is a simple way
webBroserInstance.ClearCookiesAsync();
In case of WP7, can get cookies using GetCookies method
List<Cookie> cookies = webBrowserInstance.GetCookies();
Loop through it and try discarding it
foreach (Cookie cookie in cookies)
{
cookie.Discard = true;
cookie.Expired = true;
}
Hope this works.

pg90
- 423
- 2
- 6
- 16
0
I tried to delete Facebook cookies, but it does not work. Solved the problem by using GetLogoutUrl() from Facebook C# SDK.

Der_Meister
- 4,771
- 2
- 46
- 53