Delphi 8 com ASP.net
Eu estou com dificuldades em uma coisa fazer o mini projeto q tem um webform somente rodar em um servidor win 2003 com o iis, ele dá a seguinte mensagem.
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>
[b:347f41c998]Por favor me ajudem, estou precisando disso com urgência...[/b:347f41c998]
:arrow: [color=red:347f41c998]Título alterado pelo Moderador oTTo. Removido: ´Me ajudem ´.[/color:347f41c998]
:idea: [color=blue:347f41c998]Seja mais claro no título.[/color:347f41c998]
:idea: [color=blue:347f41c998][url=http://delphiforum.icft.com.br/forum/viewtopic.php?t=16976]Saiba como obter resposta rápida..[/url][/color:347f41c998]
:idea: [color=blue:347f41c998]Leia sempre [url=http://delphiforum.icft.com.br/forum/viewtopic.php?t=6689]Regras de Conduta.[/url][/color:347f41c998]
:idea: [color=blue:347f41c998]Use sempre o Link [url=http://delphiforum.icft.com.br/forum/search.php][img:347f41c998]http://delphiforum.icft.com.br/forum/templates/subSilver/images/icon_mini_search.gif[/img:347f41c998] Pesquisar[/url] no topo da Página.[/color:347f41c998]
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>
[b:347f41c998]Por favor me ajudem, estou precisando disso com urgência...[/b:347f41c998]
:arrow: [color=red:347f41c998]Título alterado pelo Moderador oTTo. Removido: ´Me ajudem ´.[/color:347f41c998]
:idea: [color=blue:347f41c998]Seja mais claro no título.[/color:347f41c998]
:idea: [color=blue:347f41c998][url=http://delphiforum.icft.com.br/forum/viewtopic.php?t=16976]Saiba como obter resposta rápida..[/url][/color:347f41c998]
:idea: [color=blue:347f41c998]Leia sempre [url=http://delphiforum.icft.com.br/forum/viewtopic.php?t=6689]Regras de Conduta.[/url][/color:347f41c998]
:idea: [color=blue:347f41c998]Use sempre o Link [url=http://delphiforum.icft.com.br/forum/search.php][img:347f41c998]http://delphiforum.icft.com.br/forum/templates/subSilver/images/icon_mini_search.gif[/img:347f41c998] Pesquisar[/url] no topo da Página.[/color:347f41c998]
Numeros.info
Curtidas 0
Respostas
Massuda
22/11/2004
A mensagem de erro que você anexou simplesmente informa que houve um erro e, por medida de segurança, detalhes do erro não serão mostrados. Para ter uma mensagem de erro mais amigável, conforme a própria mensagem:
* execute sua aplicação usando um navegador no próprio servidor.
OU
* crie um arquivo ´web.config´ e o coloque junto de seu aplicativo no servidor; esse arquivo deve conterMais ajuda só com uma mensagem de erro mais detalhada.
* execute sua aplicação usando um navegador no próprio servidor.
OU
* crie um arquivo ´web.config´ e o coloque junto de seu aplicativo no servidor; esse arquivo deve conter
<!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="Off"/> </system.web> </configuration>
GOSTEI 0