When I deploy my project to inetpub/wwwroot/ directory, and trying to run my index.aspx file though browser, it shows this error:
Line 44: < authentication mode="Windows" / >
Source File: c:\inetpub\wwwroot\conversion\web.config Line: 44 -------------------------------------------------------------------------------- Version Information: Microsoft .NET Framework Version:2.0.50727.3615; ASP.NET Version:2.0.50727.3618
I don’t know what the problem is. How can this be fixed?
IIS version 5.1
You need to look in your web.config file and and change the authentication mode to
"None"You can read more about authentication modes and how they work here.