1. 程式人生 > 其它 >當遇到“無法啟動 IIS Express Web 伺服器。”時的解決方案

當遇到“無法啟動 IIS Express Web 伺服器。”時的解決方案

當遇到“無法啟動 IIS Express Web 伺服器。”時的解決方案

來自:https://stackoverflow.com/questions/23502327/unable-to-launch-the-iis-express-web-server-failed-to-register-url-access-is-d/28650554#28650554

---------------------------
Microsoft Visual Studio
---------------------------
無法啟動 IIS Express Web 伺服器。

來自 IIS Express 的輸出:
Failed to register URL "

http://localhost:24924/"for site "XWG.WEB" application "/". Error description: 另一個程式正在使用此檔案,程序無法訪問。 (0x80070020)
---------------------------
確定
---------------------------
當遇到以上錯誤時,在連結地址的回答中給出了很多方案,其中對我有效的一個方案是:

使用文字編輯器編輯專案的 csproj 檔案,找到:

<DevelopmentServerPort>0</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>http://localhost:24924/</IISUrl>

刪除這三行,重新載入專案執行即可。