I’ve next problem:
I need create unique user key based on user’s information what I can receive from user’s request to my web-page (ASP.NET).
I’ll use this key for auto-login functionality (I know about cookie ^^)
What kind of information I can use?
Can anybody help me?
If you are creating the key yourself then use one of .NET’s integral types (
intorlongtend to be the most commonly used) or aGuid.If you are using user-supplied data then use something like an email address that is unique to the user.