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
How do active server pages work?
What is a web based system?
How do you open a page in a new window?
What is the difference between mvc and asp.net? : Asp.Net MVC
What is the difference between client-side and server-side validations in ASP.NET?
Explain exception handling in .net.
What is distributed system in asp.net?
Describe the diffeerence between inline and code behind?
What is GAC in ASP.NET 2.0
Is it possible for me to change my aspx file extension to some other name?
Explain the server control events of asp.net ?
Explain what is an assembly?
What are the Types of state management techniques
How do I send an email message from my ASP.NET page?
Is asp.net free?