I'm building a custom ASP.NET 4 blog app. For the admin directory I could use ASP.NET forms authentication, but since I will be the only user I'm thinking of just using IIS 7 directory security to prompt for user name and password. Is there any reason not to do this? Is IIS 7 security good?

link|improve this question
feedback

1 Answer

If you're the only user, it's your own machine, and you will be using NTLM then great, I'd favour it over forms any day.

I'd favour digest over forms too.

I'd favour forms over basic, but only without SSL. With SSL, I'd favour basic.

As well as preferring their security, they also don't force you to turn on sessions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.