Uso a RedeHost, como meu provedor. Fiz a minha aplicação, dei um publish e depois fiz o deploy dos arquivos gerados no publish. Quando vou chamar a aplicação no browser dá esse erro. Configurei o meu web.config para pegar o meu banco no provedor. Esse é meu primeiro deploy em minha vida com C#(OHHHH!!!!), brincadeira à parte é sim, meu primeiro e já estou com esse osso.
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.
Pergunta
pjava
Uso a RedeHost, como meu provedor. Fiz a minha aplicação, dei um publish e depois fiz o deploy dos arquivos gerados no publish. Quando vou chamar a aplicação no browser dá esse erro. Configurei o meu web.config para pegar o meu banco no provedor. Esse é meu primeiro deploy em minha vida com C#(OHHHH!!!!), brincadeira à parte é sim, meu primeiro e já estou com esse osso.
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>
Link para o comentário
Compartilhar em outros sites
0 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.