Foros del Web

Foros del Web (http://www.forosdelweb.com/)
-   .NET (http://www.forosdelweb.com/f29/)
-   -   ejecutar asp.net (http://www.forosdelweb.com/f29/ejecutar-asp-net-161259/)

banzai 25/10/2003 14:04

ejecutar asp.net
 
hola me he intalado el framework 1.1.4 y me ejecutan las paginas aspx, pero veo q algunos ejemplos como el calendario no me las ejecuta me da este error a q es debido??? me falta algo????
el ejemplo del calendario es del asp.net

el Error:

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


gracias!!!

RootK 27/10/2003 10:20

Hola... lo que pasa es que seguramente en tu archivo web.config haz de tener ésto:

<customErrors mode="On">

y cuando exista cualquier tipo de error se dirigirá a los custom errors que tu tengas (errorres personalizados) pero que te evites de problemas cambialo de ésta manera.

<configuration>
....
....

'tu demas código
<system.web>
<customErrors mode="Off" >
</customErrors>
...
....
....
</system.web>

Prueba y me dices que tal te fue. ;-)

Saludos :adios:

banzai 27/10/2003 16:47

ok, me lo guardare para otro momento, es q lo he tenido q desinstalar xq generaba bastanes archivos temporales...eso creo vaya. xq ahora ya no las hace

Gracias :arriba:


La zona horaria es GMT -6. Ahora son las 21:31.

Desarrollado por vBulletin® Versión 3.8.7
Derechos de Autor ©2000 - 2026, Jelsoft Enterprises Ltd.