Hello, I have a folder inside my webapplication which requires login. In web.config i have as downbelow: <location path="Admin"> <system.web> <authorization> <deny users="?"/> </authorization> </system.web> </location> i can't login. it displays allways the login dialogbox even the credential are correct. Anyone any ideas ? Thnx in advance.
It looks like you've denied access to all users. You need to allow access to the Admin account or whichever account you're trying to login with.