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

Error :<configuration> <system.web> <customErrors mode="Off"/> </system.web></configuration>

Jika anda Menagalami Error pada web hosting asp anda.dan error nya seperti Ini :


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


maka tambahkan ke web.config di project anda seperti ini :<?xml version="1.0"?><configuration> <system.web> <customErrors mode="Off"/> </system.web> <system.web> <compilation debug="true"/> <authentication mode="None"/> </system.web></configuration>



YANG TERPENTING ANDA MENAMBAHKAN SINTAX DI BAWAH INI:

<customErrors mode="Off"/><compilation debug="true"/><authentication mode="None"/>