I need to write an iis asp.net module that requires win authentication in very specific circumstances that can't be configured using iis configuration alone.
Essentially,
If complex conditions are true... Then Force windows authentication (kerberos or ntlmv2) Else Proceed without authentication
Can anyone suggest a away to do this with out having to write the auth implementation?
In your http module you can just return the appropriate http header, e.g.
I've done that on a project in .NET 1.0 back in the day, but it should still work. I don't know about kerberos, but this should get you started.