If cookies is disabled in client browser will session work ?
Answer Posted / 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 |
Post New Answer View All Answers
a web application needs to be created to accept the product name and quantity of a toy from a customer. After the customer has entered the product name the application needs to display the discounted price of the product to the customer (company is offering 35% discount on all products). The application should allow the customer to select the product name from a list box. and also while i'm data binding to a label with custom data binding with some declarations : "The Discounted Price is "+((System.Convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)) - ((System.convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)*0.35)). Where i need to give this declaration in asp.net 2.0.
What is the viewstate in asp.net?
How would you turn off cookies on one page of your website?
What's the use of formatters in .net?
What is the difference between an htmlinputcheckbox control and an htmlinputradiobutton control?
What is difference between mvc and asp.net? : Asp.Net MVC
What is the difference between ASP.NET Webforms and ASP.NET MVC?
How many languages are supported by .NET at present time?
How to find out what version of asp.net I am using on my machine?
How to rename a table using sql queries?
What’s the use of “GLOBAL.ASAX” file?
How to sign out from forms authentication?
Differentiate between namespace and assembly.
What is the difference between page.registerclientscriptblock and page.registerstartupscript?
What is a web based system?