What is the difference between cookies and session?
Answer Posted / m.chenna krisha reddy
cookie:
1.cookie store client side
2.cookies can store only string type
3.cookies is non secure since stored text format at client side
4.there is limited size
session:
1.session store server side
2.session store any type of data because the value is of datatype of object
3.there is no limitation size
4.session is secure because it is stored in binary format
| Is This Answer Correct ? | 62 Yes | 5 No |
Post New Answer View All Answers
What is the difference between static class and abstract class in c#?
What is dataadapter c#?
explain the nature of the assembly work?
What problem does Delegate Solve?
What is anonymous methods in c#?
Why data types are important?
Does unity require coding?
How do I type a whitespace character?
Are c# strings immutable?
How do you declare a method in c#?
Can abstract class be sealed in c#?
What is lock in c#?
Are enums static c#?
List some of the classes used by system.data namespace?
Where test director stores its data ? Database ,Local file etc...? I need to read this data from Visual Studio 2005 c# client. Regards