M
Mythran
andla said:Hi!
Please help me with this problem. I think this is very strange and it
should work now because I have been through many solution of this
problem to remove this enter password dialog box, but none of them
helped me. I know that you probebly think that the IUSR_.. account
probebly don't have access to a file in the project folder. I have
checked this and all files has this account. I have also verified that
authentication methods in IIS is set to anonymous access.
When I add Administrators group to IUSR_.. then it works but I know it
is stupid to do so I want it to work without it. I would appreciate any
help on this issue.
I'm currently using
Windows 2000 Advanced Server
Visual Studio .NET
Asp.Net page that I want to access written in CSharp.
Changes that I have made recommended from articles.
machine.config
Processmodel
[System]
Don't know if this is to any help but I add this in case.
Yours sincerely
Andla
Ok, first off, in your web.config file, are you persisting the identity?
<identity persist="true"></identity>
If you are, it's not using IUSR (unless you set it up to do so). It is using the
account in machine.config (ASPNET). Second, check those file and directory
permissions and make sure the user that is running has the appropriate
permissions. AS A TEST, add the ASPNET user account to the directory and file
permissions. Wait a bit for IIS to realize it's using new permissions, and then
test it. Third, make sure either IIS is handling the password sync itself or
that the password you typed in is correct. Fourth, double-check that user
account in machine.config. If it's SYSTEM and you are impersonating, IIS will be
running as administrator. If its MACHINE, it will be using ASPNET. If its a
different user account, make sure the password is NOT AutoGenerate.
Hope this helps get you in the proper direction.
Mythran