9
Authentification Windows IIS Express
J'essaie d'utiliser IIS Express avec VS2010 pour héberger une application Silverlight. J'ai modifié mon fichier applicationhost.config pour permettre la modification des paramètres de configuration appropriés. J'ai les éléments suivants dans mon web.config: <location path=""> <system.webServer> <security> <authentication> <anonymousAuthentication enabled="false" /> <windowsAuthentication enabled="true" /> </authentication> </security> </system.webServer> </location> Je ne suis …