Click here to Skip to main content
15,885,366 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
hello,
i m new for web application, so a confusion with me, how to manage a individual user log in and his profile manage for example facebook manage his user profile individually and save his changed information for his.

please guide me

please help me ...
Posted

* Create a table for user info, to keep the info you need to manage, about the user.
* use session, to keep the track of logged in user.
* update your rdbms when logged in user changes info,
 
Share this answer
 
Asp.Net Identity is one method this can be managed;
http://www.asp.net/identity[^]

You then can user this Identity to lookup any specific user settings, images, colour preferences etc. that you build into your application.
 
Share this answer
 
Comments
mukesh mourya 6-Jul-14 3:26am    
sir... wont to know about, how to manage session of user with security ..
when user logout from his profile then no body can access his profile
DaveAuld 6-Jul-14 5:05am    
The ASP.Net Identity framework provides the necessary mechanisms for providing websites with password protection, or use 3rd party authentication such as Google/Facebook/Twitter etc. The Identify framework also provides role based functions so a user can be allowed to do certain things e.g. Admin or simple user, and Author or an Editor etc. Specific requirements can also be added by either overloading the framework methods or by adding additional tables etc and referencing the users uid.

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