iis configration
-
what is the security configration of the iis5 that make any client to access my website with out the password window appears to him thankx
Hi there, To enable anonymous access at IIS, you can follow the steps: + In the IIS snap-in, right click on your application folder and select Properties to open the Properties dialog box. + In the Directory Security tab, under Anonymous Access and authentication control section, click Edit to open the Authentication Methods dialog box. + Be sure to check the Anonymous access option, then click OK. Just more thing for those files what are protected by the ASP.NET like .aspx, .config ..., you also need to place the authorization setting to allow anonymous access in the web.config file, it looks like this:
<authorization>
<allow users="*" />
</authorization>For more information on IIS authentication, see: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vsent7/html/vxconIISAuthentication.asp[^]