If cookies is disabled in client browser will session work ?
Answers were Sorted based on User's Feedback
Answer / aneesh anirudhan
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.
Is This Answer Correct ? | 28 Yes | 7 No |
Answer / vidit tyagi
if cookies is disabled in client browser than session will
work by setting the property cookieless session="true"
Is This Answer Correct ? | 22 Yes | 3 No |
Yes it will still work ... Now the session key
(generated when client visited the server
first time)will be sent as query sting through
URL.
Is This Answer Correct ? | 10 Yes | 2 No |
Answer / 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 |
Answer / naved
Yes session is still will be worked if cookie is disabled
because every one know that session using cookie to stored
data but when cookie is disable on client side so it uses
two different process to send sessionId to the server..
Please read compleate post in detail from here ...
http://phpsollutions.blogspot.com/2014/05/can-sessions-work-without-cookies-if-so.html
Is This Answer Correct ? | 4 Yes | 1 No |
Answer / pramod
No session will not work.if we set cookies session to true
then it will work.
Is This Answer Correct ? | 20 Yes | 28 No |
How does session authentication work?
What is mvc in asp.net interview question? : Asp.Net MVC
On what object is the transaction in ADO.NET focused on? a) The command object b) The DataSet object c) The Connection object d) The DataAdapter object
How will u decide when to use caching and when to use viewstate?
Hi , I am Basha. I am searching a job in dotnet.Plz tell me the order of page events in asp.net 2.0> plz send faq's related to c#.net,asp.net,sqlserver2000 etc. to my mail-id : bashask.ss@gmail.com
What is MVVM in dot net?
Rate yourself in .net and sql database?
1 Answers BrickRed, Infosys, Satyam, SP Software,
About remoting and web services. Difference between them?
Can you explain what inheritance is and an example of when you might use it?
Where do the cookie state and session state information be stored?
can we call web service from the browser?
By default, Web API sends HTTP response with which of the following status code for all uncaught exception?