程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> 發布WEB站點時出現Server Application Unavailable

發布WEB站點時出現Server Application Unavailable

編輯:ASP.NET基礎
我是參考這個弄好的http://www.cublog.cn/u/8180/showart_171293.html

Server Application Unavailable
The web application you are attempting to access on this web server is currently unavailable. Please hit the "Refresh" button in your web browser to retry your request.
Administrator Note: An error message detailing the cause of this specific request failure can be found in the application event log of the web server. Please review this log entry to discover what caused this error to occur.

出現上述錯誤的原因是: .net Framework 2.0的程序與.net Framework1.1(或1.0)的程序被放入同一個應用程序池(默認情況下放入DefaultAppPool池),也就是由同一個工作進程: w3wp.exe 進行管理,而單個工作進程是無法同時管理不同的程序(或者不同版本的程序)的。如果先訪問.net framework 1.1的頁面,則工作進程先加載並管理了 1.1版本的程序集,此時訪問.net framework 2.0的web程序頁面,Server Application Unavailable 錯誤就出來了。 反之,如果在默認應用程序池的w3wp.exe尚未啟動前先訪問了 2.0的web程序(此時應用程序集已經加載了.net framework2.0的Web程序集),再訪問1.1或1.0的Web程序頁面時,同樣會出現“服務器應用程序不可用” 這樣的中文提示。(您可以結束掉以前的w3wp.exe進行測試。)

解決辦法: 在IIS中新建一個應用程序池,然後選中你的 基於.net framework2.0的虛擬目錄,點“屬性”-》在“應用程序池” 中選擇剛才新建的的應用程序池,點擊“確定”。
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved