Profile in ASP.Net 2 - How does it works?

S

Saber

I'm looking for a way to get a unique identification from
users who visit my website.
I thought getting visitor's computer name is not a bad idea,
But I noticed Profiles in ASP.Net 2, I'm curious how does
profile recognize each visitor?
Does it uses cookies? If yes, what if visitor disables cookies?

TIA for your response
 
K

Ken Cox - Microsoft MVP

The Profiles function passes a cookie to each visitor and stores a
corresponding value in the database to match up the profiles.

If the user refuses cookies, the profile settings are kept only for the
session and disappears when the user closes the browser.

There's an article here on Personalization and profiles:

http://msdn.microsoft.com/msdnmag/issues/05/10/CuttingEdge/default.aspx

Walkthrough: Maintaining Web Site User Information with Profile Properties

http://msdn2.microsoft.com/taab950e.aspx
 
S

Saber

Thanks Ken :)
nice refrences.

Ken Cox - Microsoft MVP said:
The Profiles function passes a cookie to each visitor and stores a
corresponding value in the database to match up the profiles.

If the user refuses cookies, the profile settings are kept only for the
session and disappears when the user closes the browser.

There's an article here on Personalization and profiles:

http://msdn.microsoft.com/msdnmag/issues/05/10/CuttingEdge/default.aspx

Walkthrough: Maintaining Web Site User Information with Profile Properties

http://msdn2.microsoft.com/taab950e.aspx
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top