Whether session will work if we disable cookies in client
browser ?
Answer Posted / sandip gend
Yes..
If you want to disable the use of cookies in your ASP.NET application and still make use of session state,
you can configure your application to store the session identifier in the URL instead of a cookie by setting the
cookieless attribute of the sessionState configuration element to true, or to UseUri, in the Web.config file for
your application.
The following code example shows a Web.config file that configures session state to use cookieless session
identifiers.
Code:
<configuration>
<system.web>
<sessionState
cookieless="true"
regenerateExpiredSessionId="true"
timeout="30" />
</system.web>
</configuration>
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain about a search-friendly site looks like?
Which php global variable is used for uploading a file?
What is the use of namespace in php?
What is the difference between explode and split?
What is a base url?
How is csrf token generated?
How cookies are trported from browsers to servers?
What is difference between static and final in php?
What is an example of a variable?
What does session start do in php?
What is restful api?
Explain me what are the differences between mysql_fetch_array(), mysql_fetch_object(), mysql_fetch_row()?
What is the function of mysql_real_escape_string in php?
How To Get the Uploaded File Information in the Receiving Script?
What are classes in php?