A brief difference between Session and Cookies in asp.net
Answers were Sorted based on User's Feedback
Answer / uday kumar vuriti
We use both Session and Cookies to maintain state between
the page postbacks. We can achieve state management using 2
ways.
1. Client Side Technique (using hidden fields, query string,
view state and Cookies)
2. Server Side Technique (using Session and Application)
Cookies will store data in client side either in browser or
in system hard disk.
Session will allocates memory in the web server and for
every user server will allocates memory. So Session is per
user based.
Is This Answer Correct ? | 63 Yes | 4 No |
Answer / guest
session is server side which is store in server memory and
every user having doifferent id .
cookies are store at clinet side either in browser or hard disk
both are used for page post back
Is This Answer Correct ? | 35 Yes | 5 No |
Answer / vikram
1.session is a sever side state management.
2.session is used session id to identify the clients
3.session by default time is 20 min
cookies
1.client side state management
2.browse can can hold up to 60kb
Is This Answer Correct ? | 7 Yes | 5 No |
Answer / 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 |
Answer / d.shanmugapriya
session is like your email id. when u open ur email id. it
show entire frame work. when u closed email then only is closed.
Cookies:
Is like ur google(igoogle) igoogel is used u can change ur
backgruound google page. but not entire server page .
Is This Answer Correct ? | 3 Yes | 13 No |
What is the difference between session and application?
In which event are the controls fully loaded?
what is view state?
What are the different Key TreeView Properties in Asp.net 2.0?
How do you change the session time-out value?
0 Answers TryTechnicals Pvt Ltd,
What are the differences between application object and session object?
I have around 200+ controls in a page. Each of the sets of controls are kept in divs and when header div is clicked, only those div controls pertaining to that header div will be displayed. Rest of the divs are kept invisible. When the page loads, all these 200+ controls are loaded simultaneously, that consumes much of the time. What my requirement is I want to get the div1 controls loaded when the page loads and rest of the div controls should be loaded asynchronously. it should not be loaded with page load, so that time for loading the page can be much minimised. Hope u understood my question and pls help me out with a solution asap....
I have an excel file with data, i am importing this excel file data into Sqlserver 2005 database. while importing i am getting wrong data(ie, special characters) in one column(description column), upto some limit the data in that column is coming fine,after that data is coming like below. The "Walter" leather storage bench is one of our most popular styles. The top with the tufting and double stitching finish a very impressive piece. The size is perfect in front of beds and the storage adds another functional bonus. Open it up and sneak al���Ƴ�Â��ƴ�Ã��ƶ�Å�� al���Ƴ�Â��ƴ�Ã��ƶ�Å�� Is there anywhy to resolve this? (I am using recordset in coding for developing import process.) please help me soon.
what are partial classes and their use?
In which module you have worked in your .net project explain?
What?s a bubbled event?
What is the maximum number of classes that can be contained in one dll file?