How to Save Cookies

0
0

Hello,

I use Wisej.Web.Application.Cookies.Add(key,value) to save user settings. However, in the next run, the Cookies collection does not contain the user settings.

We do not change the default settings of cookieless in default.json

Is there something I forgot to make it works?

Thanks

  • You must to post comments
0
0

To make it working in FF and Edge, I have to add to Thomas example an expire date, otherwise the cookie was only valid for the current session.

Wisej.Web.Application.Cookies.Add(“test”, textBox1.Text, new DateTime(2020,1,1));

  • You must to post comments
1
0

Hi Tung,

I tried the sample that Thomas posted on Windows 10 with Chrome, IE 11 and IE Edge and the cookie is always retrieved correctly. You may have protected mode enabled in IE, or some other security setting that prevents the cookies from being saved.

Best,

Luca

  • You must to post comments
0
0

Hello Thomas,

I run your example at my side. The cookies is not preserved.

I use Windows10. VS2013 + IIS Express, debug with Internet Explorer.

However, with Chrome the cookies is preserved as expected.

  • You must to post comments
0
0

Hi Tung,

I just checked and for me it is working fine. See attached sample – the cookie value is preserved when the app is stopped and restarted.

Best wishes
Thomas

  • You must to post comments
Showing 4 results
Your Answer

Please first to submit.