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 are satellite assemblies?
What are extension methods and where can we use them?
Write a C# program to find the Factorial of n
Do events have return type c#?
write a c# program add two matrix with input number ?
What do you mean by default constructor?
What is c sharp used for?
What is an assembly in .net?
What is xml comments in c#?
What is dbml file in c#?
I wish to create a windows application to perform a similar function as that of the "Search" which is provided to look for related files and folders in the System.. What steps must i follow??
How can you access a private method of a class?
Is datetime immutable c#?
What is ienumerable and iqueryable?
Can interface have virtual methods in c#?