Dotnetnuke ... ahora sí...
Esta historia tiene moraleja.... uno se guía normalmente por la práctica diaria y no va dejando una bitácora ... al final tiene sentido hacer este weblog... es una buena alternativa para llevar una bitácora del trabajo e ir ordenando permanentemente las labores. Establecer normas y buenas prácticas.
Instale desde cero la ultima versión. Seguí paso a paso las instrucciones, luego abri el documento pdf que viene en el .zip ... leí paso a paso.... y cierto.... el web config tiene una importancia enorme sobre todo si cumple las normas.... las versiones nuevas tienen configurado el habilitar y deshabilitar la depuración, importante a la hora de poner en marcha la aplicación y desconectar depuración, traza, errores personalizados... etc...
la clave es :
Debugging - enabling debug mode
Turning on the debugger is the first thing you'll have to do if you got some nasty error. There are some errors which don't have the necessary details if debug is not turned on and if that's the case, then you'll receive a message near the error that tells you to enable the debug mode and it also gives instructions on how to do this. I'm going to mention it here anyway. Debugging can be enabled for the entire application (for all the pages) by setting a small tag inside Web.config:
<compilation debug="true" />
Chances are you already have this tag inside Web.config and that the debug attribute is already set to true, so you only need to modify it if you want to turn debugging on or off.
If you want to enable/disable debugging on only one page you can change the Page tag located inside the .aspx file and add the debug attribute to it, like in the following example:
<%@ Page debug="true" %>
y ... listo ya estamos en marcha y por suerte con la ultima versión ... 3.013... la cual trae grandes novedades.... muy lejos está el horizonte del inicio... cuando empezó como una mejora del ibuyspy .... normas mas depuradas, mejores funcionalidades... y las que les seguire comentando a medida que las domine....
Instale desde cero la ultima versión. Seguí paso a paso las instrucciones, luego abri el documento pdf que viene en el .zip ... leí paso a paso.... y cierto.... el web config tiene una importancia enorme sobre todo si cumple las normas.... las versiones nuevas tienen configurado el habilitar y deshabilitar la depuración, importante a la hora de poner en marcha la aplicación y desconectar depuración, traza, errores personalizados... etc...
la clave es :
Debugging - enabling debug mode
Turning on the debugger is the first thing you'll have to do if you got some nasty error. There are some errors which don't have the necessary details if debug is not turned on and if that's the case, then you'll receive a message near the error that tells you to enable the debug mode and it also gives instructions on how to do this. I'm going to mention it here anyway. Debugging can be enabled for the entire application (for all the pages) by setting a small tag inside Web.config:
<compilation debug="true" />
Chances are you already have this tag inside Web.config and that the debug attribute is already set to true, so you only need to modify it if you want to turn debugging on or off.
If you want to enable/disable debugging on only one page you can change the Page tag located inside the .aspx file and add the debug attribute to it, like in the following example:
<%@ Page debug="true" %>
y ... listo ya estamos en marcha y por suerte con la ultima versión ... 3.013... la cual trae grandes novedades.... muy lejos está el horizonte del inicio... cuando empezó como una mejora del ibuyspy .... normas mas depuradas, mejores funcionalidades... y las que les seguire comentando a medida que las domine....





