Как преобразовать DefaultDocument в ASP. NET. Мне удалось преобразовать другие теги с помощью Key. Но в моем Web.config атрибут «Key» не разрешен в веб-конфигурации.
Web.Config
<defaultDocument>
<files>
<add Key="DefaultDocument" value="Document1.aspx" />
</files>
</defaultDocument>
SecondWeb.config
<system.webServer>
<defaultDocument>
<files>
<add key="DefaultDocument" value="Document2.aspx" xdt:Transform="Replace" xdt:Locator="Match(key)"/>
</files>
</defaultDocument>
</system.webServer>