Ver Mensaje Individual
  #6 (permalink)  
Antiguo 17/08/2009, 08:23
Avatar de pyroCL
pyroCL
 
Fecha de Ingreso: marzo-2009
Ubicación: C#
Mensajes: 261
Antigüedad: 15 años, 9 meses
Puntos: 2
Respuesta: Problema al publicar sitio en IIS, hecho en tres capas

Este es el error que me esta tirando ahora

Código Error:
Ver original
  1. Runtime Error
  2. 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.
  3.  
  4. 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".
  5.  
  6.  
  7. <!-- Web.Config Configuration File -->
  8.  
  9. <configuration>
  10.     <system.web>
  11.         <customErrors mode="Off"/>
  12.     </system.web>
  13. </configuration>
  14.  
  15.  
  16. 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.
  17.  
  18.  
  19. <!-- Web.Config Configuration File -->
  20.  
  21. <configuration>
  22.     <system.web>
  23.         <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
  24.     </system.web>
  25. </configuration>
__________________
La verdadera sabiduría está en reconocer la propia ignorancia.