iis 8 で最初の Web サイトを公開しました。右クリックして参照すると、アクセスできます。Chrome または IE で IP を入力すると、ユーザー名とパスワードの入力を求められます。Windows 認証が true に設定され、匿名が false に設定されている場合、web.config は次のようになります。
<configuration>
<system.web>
<authentication mode="Windows"></authentication>
<identity impersonate="true"/>
<authorization>
<allow users="?"/>
</authorization>
<compilation debug="true" targetFramework="4.5"/>
<httpRuntime targetFramework="4.5"/>
</system.web>
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
</system.webServer>
</configuration>
ユーザーに資格情報を入力させたくありませんが、ページの上部に Windows ユーザー名を表示できるようにしたいと考えています。私が間違っていることはありますか?