How does IIS persist a user's identity from page to page?
Posted
by Rising Star
on Stack Overflow
See other posts from Stack Overflow
or by Rising Star
Published on 2010-05-28T15:50:18Z
Indexed on
2010/05/28
15:51 UTC
Read the original article
Hit count: 190
Web pages are, by nature, state-less objects. When you click from page to page in an ASP.net application, each request for a page is treated as a brand-new request. We use things like cookies, session-variables, and query strings to maintain state from page to page.
When you log in to an ASP.net web application using Windows Authentication, how does IIS persist your identity between pages?
© Stack Overflow or respective owner