I'm real new to asp.net and pulling my hair out. I've been messing with this for an hour. Lone enough to have my app at least started in asp.
I created a sample, simple web site 1 page, then uploaded it to the server.
I set up the server's path as a virtual directory and made it an application.
When I try to connect to the page, ie gives the following error, and there's a lot of info about this but no resolve.
So if net sucks this bad then why is it being used?
Sorry, frustrated.
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 added a line in the right place just like they said.
No good. It's like it's not even there.
Added the line to the file ON the server, and no good.
Any help would be great, any at all.
I created a sample, simple web site 1 page, then uploaded it to the server.
I set up the server's path as a virtual directory and made it an application.
When I try to connect to the page, ie gives the following error, and there's a lot of info about this but no resolve.
So if net sucks this bad then why is it being used?
Sorry, frustrated.
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 added a line in the right place just like they said.
No good. It's like it's not even there.
Added the line to the file ON the server, and no good.
Any help would be great, any at all.