Search Results

0
votes

When is it OK to intentionally obfuscate URLs?

If you must absolutely use the URL for private/personalized data, you'd probably be better off generating a random unique identifier on the server and using that in your URL. Kind of like confirma …
1
vote

Preventive vs Reactive C# programming

I believe you are correct that using exceptions as control statements is a bad practice. Exceptions in .Net are slow. It's always much better to do your own checks rather than using exceptions to …