neronikita
Technical User
Hi!
I have had experience with asp, but not much with asp.net. I have an iis 7 web site on a remote virtual server. When I develop a page on the remote virtual server (using remote desktop) and open it in the browser, it works. However, when I'm at any of our "regular" computers, when I open that page I get this message:
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>
Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
I'm not experienced enough to know what to do with this. I've played around with a few things in the past, but nothing has worked and I don't remember what I even tried (I haven't touched it in at least 6 months) The whole asp.net thing has been a struggle. So my questions are, what do I need to do based on the above message to see the web page on any computer, and what is the best way to learn asp.net from the ground up? I just can't seem to get it to do what I used to do in asp and I'm not sure why. It probably doesn't help that months go by between having time to work on this and I end up starting over every time I'm trying to learn. I'm willing to buy books if I need to, but I'd like recommendations before I spend the money.
Thanks in advance for any help!
Di
I have had experience with asp, but not much with asp.net. I have an iis 7 web site on a remote virtual server. When I develop a page on the remote virtual server (using remote desktop) and open it in the browser, it works. However, when I'm at any of our "regular" computers, when I open that page I get this message:
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>
Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
I'm not experienced enough to know what to do with this. I've played around with a few things in the past, but nothing has worked and I don't remember what I even tried (I haven't touched it in at least 6 months) The whole asp.net thing has been a struggle. So my questions are, what do I need to do based on the above message to see the web page on any computer, and what is the best way to learn asp.net from the ground up? I just can't seem to get it to do what I used to do in asp and I'm not sure why. It probably doesn't help that months go by between having time to work on this and I end up starting over every time I'm trying to learn. I'm willing to buy books if I need to, but I'd like recommendations before I spend the money.
Thanks in advance for any help!
Di