ASP.NET Web Application (.NET Framework) - error: the details of the application error from being viewed remotely

Turn off the custom errors in Web.config file.


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