Visual Basic.NET - Ver página en internet

 
Vista:

Ver página en internet

Publicado por Daniel (2 intervenciones) el 18/02/2003 06:47:45
Hola que tal
Soy nuevo en esto y mi problema la página que he terminado me marca error en el servidor.
El error es el siguiente:
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 puedan ayudarme por favor gracias
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

RE:Ver página en internet

Publicado por Carlos Christian Molina Vega (6 intervenciones) el 18/02/2003 23:51:47
Ok, debes activar el setting para que muestre los errores para ver exactamente en que linea falla.
Un error muy común es que tal vez hiciste un cambio en las páginas y olvidaste de compilar. Digo que es común porque para quienes programaron en el ASP anterior, no era necesario compilar solo salvar y listo.

Si aun asi tienes dudas, despues de activar el setting pon el error aqui y el codigo donde lo da y con mucho gusto te podría ayudar. Suerte.
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:Ver página en internet

Publicado por Daniel (2 intervenciones) el 19/02/2003 05:34:10
Que tal Carlos
El problema que tengo es cuando la página ya se encuentra en el servidor de internet y sólo tengo acceso vía ftp.
Que puedo hacer ahí para solucionar el problema?
Gracias de antemano
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