Doubt in the publication of site made in asp.net mvc

0

After posting to a local folder on the computer, uploading the files online is the error I generated:

    
asked by anonymous 06.01.2016 / 21:40

1 answer

0

Add the following to your web.config and re-publish:

<configuration>
  ...
  <system.web>
    ...
    <customErrors mode="Off" />
  <system.web>
  ...
</configuration>

The truth error will be displayed.

    
06.01.2016 / 22:03