"Runtime Error" (Chrome)

Atentos al fallo

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>


La pregunta es, ¿cómo lo arreglo?
PAP_4ever está baneado por "clon de usuario baneado"
Usando el Mozilla Firefox.
Normalmente los moderadores te cierran el hilo y te dicen que preguntes aquí

hilo_hilo-oficial-google-chrome_1386965
En Firefox me sale lo mismo.
En este caso no vamos a cerrar el hilo dado que no es un error de Chrome, ni de ningún navegador. Es un error de la página a la que estás intentando acceder, una página creada con ASP.NET. Si no es tuya, pues poco puedes hacer. Si la página es tuya deberías revisar que está todo en orden.
Es al acceder a una página de xbox oficial que actualmente está en funcionamiento (como que ahí reparten regalos del torneo de Halo 4 XD)

He investigado en internet y podría ser fallo de mi .NET Framework... ¿O no me molesto?
No tiene nada que ver tu .NET Framework dado que la página depende única y exclusivamente del servidor donde está alojada, ya que es el servidor el encargado de transformar todo el contenido y enviarte a ti la página en el formato correcto.

Pero puedes publicar el enlace a ver si le ocurre a más gente.
6 respuestas