iis 8.5 surumu kullanilmakta ve olusan hatalari tarayicida gorebilmek icin plesk 12 surumunde pek bisey bulamadim.Kullandigim web.config ise
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<httpErrors>
<remove statusCode="500" subStatusCode="100" />
<remove statusCode="404" subStatusCode="-1" />
<error statusCode="404" subStatusCode="-1" prefixLanguageFilePath="" path="/404.asp" responseMode="ExecuteURL" />
<error statusCode="500" subStatusCode="100" prefixLanguageFilePath="" path="/500.asp" responseMode="ExecuteURL" />
</httpErrors>
</system.webServer>
</configuration>
hata ayrintilarini gorebilmek icin buna ne eklenmesi gerekiyor ?
Hata verdigi anda zaten ekranda yaziyor. Web.config kismindan satiri asagidaki gibi yapıyorsun. Hata mesaji ekranda hangi satirda oldugunu gosteriyor. System.web tag i zaten vardir.
<configuration>
<system.web>
<customErrors mode=Off/>
</system.web>
</configuration>