5

I have a .net web app running on iis7 (windows 2008) and want to add some simple protection to it.

I've managed to set up BASIC authentication, but cant work out where I set the username/passwords that are allowed to access the resource

Anthony Main
  • 233
  • 3
  • 9
  • 1
    Exactly [same question](https://stackoverflow.com/q/5373497/465053) on stackoverflow. I'm sure it will be helpful. – RBT Aug 18 '17 at 07:05

1 Answers1

3

Out of the box these would need to be Windows 2008 accounts.

If you wanted to use a custom store (SQL Server, Membership Service) then you'd need to write your own Basic Authentication module:

Developing a Module Using .NET

Kev
  • 7,877
  • 18
  • 81
  • 108