1
custom errors will just display the designed error page, will not fix the issue. there may be many reasons:
(i) bad configuration structure
(ii) .net versions
the best way to deploy website is to first deploy on local IIS having same configuration like your ftp server.
however, if you can't do this then do one thing, delete your current config file and add a new config (that will have default settings and no any bad config structure).
even you can trap the specific error by writing try catch handler at different locations like in your codebehind or in globals etc.
Accepted 3
This error come because on ftp there is already a web.config file on the root directory that is why error comes. so the best way to remove the error is to remove the complete directory and recreate it.
0
Hi,
set Custom Error mode to off, then check what error you are getting.
<customErrors mode="Off">
</customErrors>