Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is Asp.net personalization?

Tags:

asp.net

Hai ,

I want to know about asp.net personalization and how to implement this feature? can u suggest me an example or a tutorial demonstrating this concept. I think its a very useful feature in asp.net. I hope to know more about it?

like image 676
Vibin Jith Avatar asked Feb 21 '26 16:02

Vibin Jith


1 Answers

From the Article:

The simplest form of personalization is to record information about the user, and then to make that information available whenever the user logs on. This requires a kind of persistence that goes beyond session state; to create true personalization, you'll want to create a database that associates the saved information with a particular user, and that persists indefinitely.

http://ondotnet.com/pub/a/dotnet/2004/10/25/libertyonwhidbey.html

like image 140
Bhaskar Avatar answered Feb 23 '26 14:02

Bhaskar