简体   繁体   中英

IIS hosting issue

whenever I hosted my application in IIS I used to get error. I have followed the following steps:

  1. InetMgr
  2. default web site(right click)
  3. add virtual directory
  4. physical path
  5. selected permissions(read)
  6. browse

there I used to get the following error all the time:

Server Error in '/evals' Application.
-------------------------------------------------------------------------------- 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.  

Details: To enable the details of this specific error message to be viewable on the local server machine, 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 "RemoteOnly". To enable the details to be viewable on remote machines, please set "mode" to "Off". <!-- Web.Config Configuration File --> 

<configuration>
    <system.web>
        <customErrors mode="RemoteOnly"/>
    </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="On" defaultRedirect="mycustompage.htm"/>
    </system.web> </configuration>

You need to open the web.config file for your application and look for the element <customerrors> under <system.web> . If it's not there add it in, and if it is there make sure mode="Off" .

When you save the file your app will recycle and you should be presented with a stacktrace of the real error behind this one. You should be able to debug from there.

您还可以将Visual Studio附加到托管站点的w3wp流程中,以逐步执行代码...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM