A brief difference between Session and Cookies in asp.net
Answer Posted / johny shaik
cookie
cookie is client side state management technique and it is a "small information which is stored on the browser in plain text format" cookie is created on the server and stored on the browser.
session
session is server side state management technique and "is used to maintain the state of the response on the server upto particular time period" and default time out o session is 20 minutes. session is created on the server and session id is stored on the browser in form of cookie...
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Why SessionID changes in every request in asp.net?
What are Master Pages in ASP.NET? or What is a Master Page?
What is a url string?
Where would you use an ihttpmodule, and what are the limitations of any?
Explain the benefits of viewstate?
Differentiate between early binding and late binding.
What does the hotspot class in .net do?
What is mvc in asp.net tutorial? : Asp.Net MVC
What is a 307 redirect?
Define application state variable and session state variable?
Write a code for sending an email from asp.net application.
Does web services support data reader like pom project?
What is the difference between login controls and forms authentication?
Explain server side state management system.
Explain how cookies work.