Ver Mensaje Individual
  #1 (permalink)  
Antiguo 27/04/2010, 01:49
SUPERMANU
 
Fecha de Ingreso: abril-2010
Mensajes: 2
Antigüedad: 14 años
Puntos: 0
Problemas con una Web ASPX

Buenos dias

Yo siempre he trabajado con HTML y en servidores Linux, pero un compromiso me ha encargado modificarle la web en ASPX y cambiarla de Hosting, bien os cuento mi problema par aver si me podeis ayudar.

He cogido la web tal cual, y la he puesto en mi hosting windows para poder hacer pruebas antes del traspaso definitivo, pues bien, al cambiar de hosting, la misma pagina que veo correctamente en un hosting, en el mio, no la veo, me da error en lineas de un archivo Web.Config, he ido comentado las lineas segun me daban errores hasta que he llegado a n punto que no me da ninguna linea erronea, os paso el error para ver si me podeis decir algo, ya que ando muy pero que muy perdido. muchas gracias

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>

-------------------------------------

Espero me podais ayudar.

un saludo

Última edición por SUPERMANU; 27/04/2010 a las 01:54