M
Mark A. Sam
Hello I am working locally with Visual Web Developer 2005 Express. Before I
even installed it, the information from Microsoft was that you could FTP it
to a remote site and it should work. The site I FTP'd to has .Net Framework
2.0 installed. I got this error when I tried to open the site:
Runtime Error
Description: An application error occurred on the server. The current custom
error settings for this application prevent the details of the application
error from being viewed remotely (for security reasons). It could, however,
be viewed by browsers running on the local server machine.
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>
I pasted the line
<customErrors mode="Off"/>
into the web.config file within the <system.web> tags but still getting the
same page, and not an error page. I'm not sure why there would be an error.
Thanks for any help and God Bless,
Mark A. Sam
even installed it, the information from Microsoft was that you could FTP it
to a remote site and it should work. The site I FTP'd to has .Net Framework
2.0 installed. I got this error when I tried to open the site:
Runtime Error
Description: An application error occurred on the server. The current custom
error settings for this application prevent the details of the application
error from being viewed remotely (for security reasons). It could, however,
be viewed by browsers running on the local server machine.
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>
I pasted the line
<customErrors mode="Off"/>
into the web.config file within the <system.web> tags but still getting the
same page, and not an error page. I'm not sure why there would be an error.
Thanks for any help and God Bless,
Mark A. Sam