"how do you view session cookies in internet explorer?" Code Answer

5

cookies set with the httponly attribute will not be visible to javascript (e.g. via the document.cookie accessor). in ie8, 9, and 10, hit f12 to open the developer tools. click cache > view cookie information to see persistent and session cookies that apply to the current domain.

this feature is not present in the ie11 version of the tools, which would mean that your choices are 1> watch outbound cookie headers in fiddler or on the network tab, or 2> write a plugin that calls the internetgetcookieex api with the appropriate flag to include httponly cookies.

By dpseidel on September 23 2022

Answers related to “how do you view session cookies in internet explorer?”

Only authorized users can answer the Search term. Please sign in first, or register a free account.