server error in application

independence
genel anlamda asp.net’te olu$an hata mesaji.aslinda spesifik bir hatayi degil, kodlarda(yuksek ihtimalle connection stringte) var olan bir hatayi genel bir hataymi$casina gosterir.bunun sebebi sizin gibi siteye baglanan herkesin ayni hatayi gorebilecegindendir.asp’de ki gibi "xxx.asp line 151" turu bir sazanlik yapmaz asp.net.

hata tam olarak $u $ekildedir.

server error in ’/’ application.
--------------------------------------------------------------------------------

runtime error
description: an application error occurred on the server. the current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). it could, however, be viewed by browsers running on the local server machine.

details: to enable the details of this specific error message to be viewable on remote machines, please create a <customerrors> tag within a "web.config" configuration file located in the root directory of the current web application. this <customerrors> tag should then have its "mode" attribute set to "off".


<!-- web.config configuration file -->

<configuration>
<system.web>
<customerrors mode="off"/>
</system.web>
</configuration>


notes: the current error page you are seeing can be replaced by a custom error page by modifying the "defaultredirect" attribute of the application’s <customerrors> configuration tag to point to a custom error page url.


<!-- web.config configuration file -->

<configuration>
<system.web>
<customerrors mode="remoteonly" defaultredirect="mycustompage.htm"/>
</system.web>
</configuration>


eger (muhtemelen web.congif dosyasinda) kodlarin icerisinde bulunan $u satiri;

<customerrors mode="off"/>

mode="on" olarak dei$tirirseniz spesifik olarak hatanin nereden kaynakli oldugunu gorebilirsiniz.

neden bekliyorsun?


bu sözlük, duygu ve düşüncelerini özgürce paylaştığın bir platform, hislerini tercüme eden özgür bilgi kaynağıdır.
katkıda bulunmak istemez misin?

üye ol