What are Cookies collection in ASP.NET?

Describe the Cookies collection in ASP.NET.

- Cookies are text files that store information about the user.
- A user is differentiated from the other by the web server with the help of the cookies. It can also determine where the user had been before with them.
- A cookie can store information only when the user sends it.
- Cookies are stored on client’s machine. The maximum number of cookies allowed is 300 and each of them can carry at the most 4 kb of data.
What is the Common Language Specification (CLS)?
ASP.NET - Common Language Specification (CLS) - The CLS contains constructs and constraints which provides a guideline for library and compiler writers.....
What is Shared (static) member?
ASP.NET - What is Shared (static) member? - It belongs to the type but not to any instance of a type....
What is the transport protocol you use to call a Web service?
ASP.NET - What is the transport protocol you use to call a Web service? - SOAP (Simple Object Access Protocol) is the preferred protocol.....
Post your comment