|
|
|
|
|
Total Hits: 1112 | Today: 0
|
Author: Faraz
|
Rating:
|
|

In this article I will try to explain you how you can read/write cookies using ASP.Net. Now days, working with internet are very common. And many of the internet users visit million of sites daily. When ever request to open a site by visitor is made a small text files is stored on the client web browser. These small text files are called the cookies it contains information either related to user preferences or a site visited by user very often....
|
|
|
|
Total Hits: 1067 | Today: 0
|
|
Rating:
|
|

The SessionID is used to link data on the server with a particular browser "session." By using the cookieless session feature of ASP.NET you'll learn how to not require storing this SessionID in a cookie, but instead as part of the URL....
|
|
|
|
Total Hits: 370 | Today: 0
|
|
Rating:
|
|

In part 1 we examined how to give people cookies to give them access to the site. However, if you had three files in a directory (web.config, your login page, a normal ASP.NET page) you would see that anyone could access the normal ASP.NET page without logging in. You should know that this isn't a problem with the code you're using or with IIS, it's because you haven't authorized the users. This article will look at allowing and denying users access to your site....
|
|
|
|
Total Hits: 118 | Today: 0
|
Author: Bipin Joshi
|
Rating:
|
|

If you are a ASP developer, you probably already know what are cookies and how to use them in ASP. Just to recap - Cookies are small files stored on client machine which contain a piece of information. Cookies are typically used to store personalization information, user's nick name, his preferences etc. In this short code illustration we will see how to write and read cookies in ASP.NET....
|
|
|
|
Total Hits: 116 | Today: 0
|
Author: Dino Esposito
|
Rating:
|
|

Personalizable applications let users set their UI preferences and store those settings. Desktop applications typically store the user preferences in a local file (an XML or a configuration file) or in the registry. Web applications, on the other hand, generally use cookies to store user-specific data. Cookies are essentially a text-based key-value collection sent and received via HTTP. There are a few disadvantages to using cookies—chiefly their size limit (8KB), the user's ability to refuse co...
|
|
|
|
Total Hits: 566 | Today: 0
|
|
Rating:
|
|

We can look at a cookie as a configuration setting maintained by our web site, but the difference with a cookie is that it is stored on the clients machine by the web browser. Perhaps the most common use for a cookie is marking whether someone should be logged back in when they return to a site, but they can also be used to store small configuration items, like the last search term the person used on your site or their site colour preferences. ...
|
|
|
|
Total Hits: 631 | Today: 0
|
Author: MSDN
|
Rating:
|
|

Explains how to read and write HTTP cookies in an ASP.NET Web application using Visual Basic....
|
|
|
|
Total Hits: 366 | Today: 0
|
|
Rating:
|
|

In web.config we looked at what web.config is and I told you that I would talk more about it in other articles so here is one. This article will look at security in your ASP.NET applications and how to secure your applications. See Security in ASP.NET for more information on security in ASP.NET (well, duh)....
|
|
|
|
|
|