• Miércoles 6 de Noviembre de 2024, 07:02

Autor Tema:  Server Error In '/' Application  (Leído 1382 veces)

sanca

  • Nuevo Miembro
  • *
  • Mensajes: 8
    • Ver Perfil
Server Error In '/' Application
« en: Martes 18 de Julio de 2006, 00:06 »
0
Tengo un proyecto que en mi pc trabaja bien, pero al subirlo a un servidor me sale el siguiente error:


!****************************************************
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>


ALguien puede ayudarme?.
Muchas gracias por la atención.

hellscream

  • Miembro activo
  • **
  • Mensajes: 95
    • Ver Perfil
Re: Server Error In '/' Application
« Respuesta #1 en: Martes 18 de Julio de 2006, 01:06 »
0
Ayuda a ayudar, haz lo que te recomienda la descripción de ese error, una vez hecho esto muéstranos el error verdadero...

sanca

  • Nuevo Miembro
  • *
  • Mensajes: 8
    • Ver Perfil
Re: Server Error In '/' Application
« Respuesta #2 en: Martes 18 de Julio de 2006, 17:46 »
0
Holas.

Gracias por ayudarme,  pude solucionarlo.

Hice lo que me plasmó el error, como me dijiste, y asi pude ver mejor el problema.

Lo que pasaba, en mi caso, es que yo estoy modificando un proy, y colocaba  el nuevo .dll del proyecto que esta en el bin, y el anterior .dll del proy le cambiaba de nombre para tener una copia, y me salió un error conrrespecto al viejo .dll, lo cambie de luegar y se solucionó.

Bueno espero que me hayan entendido.

Gracias  :hola:  :D