Search Results

1
vote

How do I prevent users from sharing the same account? (ASP.NET MVC)

Are you trying to stop multiple people using the same account at the same time or at different times? You can stop the former by storing a GUID in a user's session and checking it against a …
1
vote

User tracking in asp.net

Firstly, I'd consider whether you need to implement this functionality yourself, Google Analytics does a good job of tracking usage and is free. You can find it on …
0
votes

Fastest way to update namespaces (resharper ?)

This isn't quite what you want to do ... but hopefully it's helpful. Go to the class view, and rename the namespace using Ctrl+R,R. It will update that namespace in all the files/folders th …