web.config and error 500

  • Thread starter Thread starter xaime
  • Start date Start date
X

xaime

Hi all,

I have a problem with my application.
It run OK in my local server, but give me an Error 500 in the remote server.

I would like to configure web.config in order to see all error code, but I
don't know how.

Please, could someone help me?

Thanks a lot.
 
Verify to see if the .NET framework is setup properly on the remote server.

Try run "<windows
directory"\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis.exe -i" to see if
it helps.

You may also write a dummy aspx page that merely links an basic codebehind
class to see if you can view the page.

If still cannot, place a HTML file at the directory and rename it's
extension to ".aspx" to see if you can see the page.
 
<configuration>
<system.web>
<customErrors mode="Off" />
.......
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top