Ayrıntılı hata bilgisi göstermek asp.net / How to enable detailed error information ,asp.net,IIS

Merhaba,
Geliştirme yaparken yahut bir projeyi derleyip çalıştırdığınızda IIS tarafından size detay içermeyen
hatalar dönebiliyor.
gibi ve daha fazlası…
Örnek ; Tıklayın
Bunun nispeten kod /web.config tarafından detaylandırmak için ,
config içersine ;
<configuration
>
<system.web>
<customErrors mode="Off" />
</system.web>
<system.webServer>
<httpErrors errorMode=“Detailed” />
</system.webServer>
</configuration>
yazarsanız detaylı hatayı görebilirsiniz.
Oğuz ALTUNTAŞ © 2017