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 asp.net mvc differs from asp.net web forms? : asp.net mvc
Explain the concept of View Model in MVC?
Explain the different types of assemblies?
How to implement globalization and localization in the use interface in .net.
How will create assesblies at run time?
Explain what are the advantages of asp.net mvc framework? : asp.net mvc
8. Why do you want to work here?
What is Difference between Production Serves and Development Servers? And Suppose, m adding/deleting C# file in a project based on the Specific Requirement. These Files are Automatically updated in Production Servers? So Which tool is needed to do This One?
What is query string? What are its advantages and limitations?
How would you turn off cookies on a page of a website?
Can I have a unique key as foreign key?
How do u declare static variable and how it is declared and what is its lifetime?
What websites use asp.net?
what are configuration files?
How to register exception filter globally?