當遇到“無法啟動 IIS Express Web 伺服器。”時的解決方案
阿新 • • 發佈:2021-12-02
當遇到“無法啟動 IIS Express Web 伺服器。”時的解決方案
---------------------------
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>
刪除這三行,重新載入專案執行即可。