tshao
tshao

Reputation: 1127

My cookie disappears in asp.net page

I'm working on an issue that a cookie disappears after refreshing the page. I'm totally new to this page and doesn't know any code in either client/server side, so I decide to trace the http by fiddler.

This is a session cookie which has no expire date assigned, neither does the domain path. I checked all http request during the refreshing, found nothing related to "Set-Cookie" in the response header, but the cookie just disappeared.

This issue happened in IE, FF, Chrome. I don't think it's a browser related issue.

As I don't own the server side code, I can't search the code by the cookie name. Any idea what can possible be the problem?

Upvotes: 1

Views: 822

Answers (1)

draclosta
draclosta

Reputation: 36

Try checking your page source and JS file, cookie could potentially be deleted by Javascript.

Upvotes: 2

Related Questions