If cookies is disabled in client browser will session work ?
Answer Posted / amit
Sessions are normally tracked with cookies. However,
clients are not required to accept cookies. Furthermore,
you can turn off the use of cookies for session tracking
altogether in the Web Application Server Control Panel.
However when cookies are turned off or cookies are not
enabled on a specific client computer, the server must work
harder to track the session state, which has a performance
impact. The recommendation is to leave cookies on and let
the server automatically fall back to the cookieless
operation only when required by a specific client
connection.
When a session is created by the server, some information
is automatically stored in it - the session ID and a
timestamp. as an application developer, you can also store
other information in the session in order to make it
available to subsequent requests without explicitly passing
it to that request.
there is always a session generated between client and
server when the request for the page done. the session
variable would work
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
What are triggers of an updatepanel?
Explain how do you validate the controls in an asp .net page?
To load your generated dataset with data which method do you invoke?
What do you mean by View State and what is its role?
Explain a program using razor view engine to create a simple application? : asp.net mvc
What is asp.net caching?
How can we implement a identity (sql server) call in an asp.net page?
What are different types of authentication techniques that are used in connection strings to connect .net applications with microsoft sql server?
What is the difference between cookie and session?
Explain the main differences between asp and asp.net?
Which validator control you use if you need to make sure the values in two different controls matched?
Describe the difference between inline and code behind - which is best in a?
What is asp net objects?
what are the events raised in asp.net page life cycle?in which stage view state can be loaded?
What is asp net_sessionid?