Hi,
I have an .aspx page that is in a project on our development server. I copied all of these pages over to a directory created on the live web server (this is our 1st asp.net project). When the page comes up in the browser, it displays the Runtime error page,
Server Error in '/' Application.,
This page suggests modifying the web.config file to be like so:
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
The web.config file in this folder already has this code. I then created a new web.config file for the root directory of the web site as well, with no change.
Is there some other way I need to set up the project other than just copying the files into a directory? Or something else I need to do to view the page (and its full error messages) properly?
Thanks,
Ray
I have an .aspx page that is in a project on our development server. I copied all of these pages over to a directory created on the live web server (this is our 1st asp.net project). When the page comes up in the browser, it displays the Runtime error page,
Server Error in '/' Application.,
This page suggests modifying the web.config file to be like so:
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
The web.config file in this folder already has this code. I then created a new web.config file for the root directory of the web site as well, with no change.
Is there some other way I need to set up the project other than just copying the files into a directory? Or something else I need to do to view the page (and its full error messages) properly?
Thanks,
Ray