1. 程式人生 > >Server Error in '/' Application. 解決

Server Error in '/' Application. 解決

“/”應用程式中的伺服器錯誤。 執行時錯誤 說明: 伺服器上出現應用程式錯誤。此應用程式的當前自定義錯誤設定禁止遠端檢視應用程式錯誤的詳細資訊(出於安全原因)。但可以通過在本地伺服器計算機上執行的瀏覽器檢視。 詳細資訊: 若要使他人能夠在遠端計算機上檢視此特定錯誤資訊的詳細資訊,請在位於當前 Web 應用程式根目錄下的“web.config”配置檔案中建立一個 <customErrors> 標記。然後應將此 <customErrors> 標記的“mode”屬性設定為“Off”。

<!-- Web.Config 配置檔案 --><configuration>    <system.web>        <customErrors mode="Off"/>    </system.web></configuration>


原因1: 這是由於配置中 Asp.Net 程式 沒有顯示詳細的錯誤資訊. 解決:  您必須按照要求,修改 web.config 檔案 將 <customErrors mode="Off"/> 設定mode ="Off", 上傳到網站根目錄.然後重新整理就可以看到詳細錯誤.然後根據錯誤修改程式就可以了. 原因2: web.config 檔案不是放在www根目錄下.而是放在www的子目錄下等.這樣使用者訪問這個目錄時就會出現提示錯誤. 解決:  將子目錄下的 Asp.net應用程式移到 www根目錄下. 這樣就可以看到詳細錯誤了.您可以根據錯誤調整程式.

3. Asp.Net 程式顯示錯誤如下:
Server Error in '/' 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 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".
原因1: web.config 檔案不完整.不是合格的asp.net 配置檔案.
解決:  您要檢查web.config 是否合格,有時候是粗心,xml檔案不完整.導致的問題 原因2: asp.net版本問題.asp.net有asp.net 1.1和 asp.net2.0 兩個版本.

Server Error in Application.The resource cannot be found.Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.

Requested URL: /aspx/2/board.aspx
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.42遇到這樣的問題是不是沒有部署bin檔案,如果有的話,你把bin檔案裡面的那個DreamweaverCtrls.dll複製一下,然後把bin檔案刪除,再在之前的目錄下面新建一個bin檔案,把DreamweaverCtrls.dll貼上進去。
如果還是不行那就是iis的問題。
你需要,開始-執行-cmd-輸入cd C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727-回車-aspnet_regiis.exe 回車。他會提示asp.net正在安裝。之後安裝完成
然後你再去重新啟動一下iis就可以了,啟動方法為:右擊我的電腦-管理-服務和應用程式-右擊Internet資訊服務-所有任務-重新啟動iis,這樣應該就行了

ASPX程式 Server Error in '/' Application 錯誤的最簡單解決辦法

給web目錄加上 Users 許可權即可:
右鍵網站資料夾,屬性,安全,新增 Users ,確定,不用重啟IIS。

原文地址:http://www.jb51.net/article/27545.htm