Click here to Skip to main content
15,881,898 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Hi,

I am dealing with a project in which user has to customize his own part. Can any one give me a brief idea about implementing user preferences in ASP.NET. Thanks in advance
Posted
Updated 28-Sep-12 8:28am
v2
Comments
I.explore.code 28-Sep-12 8:17am    
you can try storing preferences in database, this is probably the simplest way out.
Pro Idiot 28-Sep-12 13:54pm    
Or try using Session, cookie,profile

ASP.Net has everything for you , if you don't want to use DB

You have two choices, one is to save the preferences using cookies on the client side, or in a database on the server side where user configuration options can be persisted.
 
Share this answer
 
You can use ASP.NET profile personalization - here, refer this: MSDN Magazine: Personalization and User Profiles in ASP.NET 2.0[^]

Another way to handle it: User Preference using Application Settings[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900