ASP.NET - Server Error in '/' Application.

 
Vista:

Server Error in '/' Application.

Publicado por Duncan (1 intervención) el 31/10/2006 05:25:35
Buenas !!!

Tengo una pequeña aplicacion web que en mi pc funciona bien ... pero al subirlo al servidor me envia el siguiente error :
como lo soluciono ???

P.D : en el webconfig ya tengo el <customErrors mode="Off"/> en Off y nada ... sigue saliendo el mismo error ... que mas hago ??? ... gracias de antemano !!! .

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>
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
sin imagen de perfil
Val: 56
Bronce
Ha mantenido su posición en ASP.NET (en relación al último mes)
Gráfica de ASP.NET

RE:Server Error in '/' Application.

Publicado por Yamil Bracho (1136 intervenciones) el 02/11/2006 18:39:06
Ejecuta la aplicacion desde el servidor, es decir, dirigite a donde esta el servidor, entra al navegador y escibe http://localhost/tuAplicacion/Tupagina. Asi sabras verdaderamente cual es el error...
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar

RE:Server Error in '/' Application.

Publicado por Fernando (28 intervenciones) el 09/11/2006 16:28:24
A mi me pasa lo mismo pero en mi servidor local no tengo el error, asi q cómo hago para ver el error original cunado lo ejecuto remotamente?
Gracias!
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar