|
|
Forums » .NET » ASP.NET »
Posted Date: 14 Aug 2008 Posted By:: Vinod Krishna Member Level: Gold Member Rank: 892 Points: 1
Responses:
8
|
hi
|
Responses
|
#281107 Author: Danasegarane.A Member Level: Gold Member Rank: 55 Date: 14/Aug/2008 Rating:  Points: 0 | what is ur question ?
Thanks & Regards, Danasegarane Arunachalam
http://www.techreceipe.com/
| #281761 Author: Kumar Velu Member Level: Gold Member Rank: 125 Date: 14/Aug/2008 Rating:  Points: 6 | Browser cookies are used to store small pieces of information on a client machine. A cookie can store only up to 4 KB of information. Generally cookies are used to store data which user types frequently such as user id and password to login to a site.
There are two types of browser cookies - session and persistent. Session cookies, also called as temporary cookies are stored in a browsers memory and stay alive as long as a browser session is live. When you close a browser, these cookies die.
Before we start on the mechanics of working with cookies, I will mention a couple of limitations of working with cookies. Most browsers support cookies of up to 4096 bytes. That is plenty of space for storing a few values on the user's computers, but you would not want to try to store a dataset or some other potentially large piece of data in a cookie. More practically, you probably do not want to store a big collection of user information in a cookie. Instead, you would want to store a user number or other identifier. Then, when the user visits your site again, you would use the user ID to look up user details in a database. (But see Cookies and Security for some caveats about storing user information.)
| #308934 Author: Bunty Member Level: Gold Member Rank: 14 Date: 21/Oct/2008 Rating:  Points: 6 | Hi,
A cookie is used to store small piece of information on client machine.A cookie contains page-specific information that a web server sends to a client along with page output.Cookies are used for sending page specific information because HTTP is a stateless protocol and cannot indicate whether page request coming from the same or different client.You can use cookies to keep track of individual user who access a web page across HTTP connection.
Cookies are saved on the client computer.Cookies can be either temporary or persistent.Temporary cookies also know as session cookies,exist in the memory space of browser.When the browser is closed,all the session cookies added to the browser are lost.A persistent cookie is saved as a text file in the file system of the client computer.
Cookies enable you to store information about a client,session,or application.When a browser request a page,it sends the information in the cookie along with the request information.A web server reads the cookie and extracts its value.
Regards S.S.Bajoria
Thanks & Regards
Bunty
Expertise Dot Net On Earth
| #309002 Author: Miss Meetu Choudhary Member Level: Gold Member Rank: 13 Date: 21/Oct/2008 Rating:  Points: 6 | Cookies provide a means for a Web server to induce a client to store information about itself which can subsequently be called up by the Web server when required. This might be information which the user has supplied about themselves, their preferences or their requirements via forms input. The oft-cited example is the shopping list which might be added to from time to time. Cookies are currently implemented by Netscape and Internet Explorer.
Cookies are Small files that automatically downloaded from a Web server to the computer of someone browsing a Web site. Information stored in cookies can then be accessed any time that computer returns to the site. Cookies also allow Web sites to "personalize" their appearance by identifying visitors, storing passwords, tracking preferences, and other possibilities.
We can also say that cookies are the Electronic ID tags sent from a Web server to a user's browser to track and record their Web-surfing patterns, i.e., ads clicked on, products purchased, sites visited and the user's origin. This can enable the site to provide more personalized information to be served upon a return visit to the site.
==
Thanks and Regards Meetu Choudhary
Thanks and Regards Miss Meetu Choudhary (Site Coordinator) Go Green Save Green My Profile on Google
|
|
| Post Reply |
|
|
|
 | | This thread is locked for new responses. Please post your comments and questions as a separate thread. If required, refer to the URL of this page in your new post. |
|
|
|
|
|
Active MembersTodayLast 7 Daysmore... Talk to Webmaster Tony John
|