Tech Learner
Tech Learner

Reputation: 1317

Cookies secure flag in IE and Chrome browser

We have recently configured our Asp.net Web application to support SSL using below code. When we test using Chrome's developer tools, could see Cookies set with Secure flag but in IE 11, secure flags are not set. Which one is correct and How to test properly?

<httpCookies requireSSL="true" />

Upvotes: 0

Views: 3840

Answers (1)

Sea Charp
Sea Charp

Reputation: 298

Internet Explorer:

  • Click F12 for developer tools.
  • Navigate to Network tab.
  • Click "start capturing" and navigate to your website.
  • Double click on the correct URL to get Detailed View.
  • Navigate to the cookies tab in detail view to determine how the cookie was received from web server.
  • Check to ensure the cookie direction is Received.

Upvotes: 2

Related Questions