ASP.Net不執(zhí)行問題一解
更新時間:2008年02月25日 14:31:48 作者:
ASP.Net不執(zhí)行問題一解
最近IIS突然無法運行ASP.Net了.反復重裝也沒有用.檢查系統(tǒng)日志報告如下錯誤:
aspnet_wp.exe could not be started. The error code for the failure is
80004005. This error can be caused when the worker process account has
insufficient rights to read the .NET Framework files. Please ensure that
the .NET Framework is correctly installed and that the ACLs on the
installation directory allow access to the configured account.
許多方法都不靈。最后用這個“藥”解決問題。方子奉上供大家分享:
首先停止IIS服務(wù)
iisreset /stop
然后刪除 ASPNET 帳號
net user ASPNET /delete
重新注冊 ASP.NET 和 ASPNET 帳號
aspnet_regiis -i
啟動IIS
iisreset /start
aspnet_wp.exe could not be started. The error code for the failure is
80004005. This error can be caused when the worker process account has
insufficient rights to read the .NET Framework files. Please ensure that
the .NET Framework is correctly installed and that the ACLs on the
installation directory allow access to the configured account.
許多方法都不靈。最后用這個“藥”解決問題。方子奉上供大家分享:
首先停止IIS服務(wù)
iisreset /stop
然后刪除 ASPNET 帳號
net user ASPNET /delete
重新注冊 ASP.NET 和 ASPNET 帳號
aspnet_regiis -i
啟動IIS
iisreset /start
相關(guān)文章
ASP.NET2.0中數(shù)據(jù)源控件之異步數(shù)據(jù)訪問
ASP.NET2.0中數(shù)據(jù)源控件之異步數(shù)據(jù)訪問...2006-09-09asp.net音頻轉(zhuǎn)換之.amr轉(zhuǎn).mp3(利用ffmpeg轉(zhuǎn)換法)
AMR轉(zhuǎn)MP3可實現(xiàn)將手機上的AMR錄音轉(zhuǎn)換成流行的MP3格式,以適用更廣泛的應(yīng)用。AMR的體積非常小,適用于存儲在手機中,當我們想將在手機上的音頻上傳到網(wǎng)絡(luò),就需要將其轉(zhuǎn)換成MP3等流行的格式,本文就是介紹asp.net利用ffmpeg轉(zhuǎn)換法將.amr轉(zhuǎn).mp3的方法,下面來一起看看吧。2016-12-12ASP.NET對HTML頁面元素進行權(quán)限控制(一)
界面每個元素的權(quán)限也是需要控制的。比如一個查詢用戶的界面里面有查詢用戶按鈕,添加用戶按鈕,刪除用戶按鈕,不同的角色我們得分配不同的權(quán)限2013-12-12透過ashx看瀏覽器服務(wù)器運行本質(zhì)(圖解)
一般處理程序(HttpHandler):是一個實現(xiàn)System.Web.IHttpHandler接口的特殊類。任何一個實現(xiàn)了IHttpHandler接口的類是作為一個外部請求的目標程序的前提,感興趣的朋友可以了解下或許有所幫助2013-01-01