ASP.Net不執(zhí)行問題一解
更新時間:2008年02月25日 14:31:48 作者:
ASP.Net不執(zhí)行問題一解
最近IIS突然無法運(yùn)行ASP.Net了.反復(fù)重裝也沒有用.檢查系統(tǒng)日志報(bào)告如下錯誤:
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用DataSet導(dǎo)出到Excel的方法
ASP.NET用DataSet導(dǎo)出到Excel的方法,需要的朋友可以參考一下2013-03-03ASP.NET 定制簡單的錯誤處理頁面實(shí)現(xiàn)代碼
通常web應(yīng)用程序在發(fā)布后,為了給用戶一個友好界面和使用體驗(yàn),都會在錯誤發(fā)生時跳轉(zhuǎn)至一個自定義的錯誤頁面,而不是asp.net向用戶暴露出來的詳細(xì)的異常列表。2010-01-01asp.net音頻轉(zhuǎn)換之.amr轉(zhuǎn).mp3(利用ffmpeg轉(zhuǎn)換法)
AMR轉(zhuǎn)MP3可實(shí)現(xiàn)將手機(jī)上的AMR錄音轉(zhuǎn)換成流行的MP3格式,以適用更廣泛的應(yīng)用。AMR的體積非常小,適用于存儲在手機(jī)中,當(dāng)我們想將在手機(jī)上的音頻上傳到網(wǎng)絡(luò),就需要將其轉(zhuǎn)換成MP3等流行的格式,本文就是介紹asp.net利用ffmpeg轉(zhuǎn)換法將.amr轉(zhuǎn).mp3的方法,下面來一起看看吧。2016-12-12ASP.NET對HTML頁面元素進(jìn)行權(quán)限控制(一)
界面每個元素的權(quán)限也是需要控制的。比如一個查詢用戶的界面里面有查詢用戶按鈕,添加用戶按鈕,刪除用戶按鈕,不同的角色我們得分配不同的權(quán)限2013-12-12透過ashx看瀏覽器服務(wù)器運(yùn)行本質(zhì)(圖解)
一般處理程序(HttpHandler):是一個實(shí)現(xiàn)System.Web.IHttpHandler接口的特殊類。任何一個實(shí)現(xiàn)了IHttpHandler接口的類是作為一個外部請求的目標(biāo)程序的前提,感興趣的朋友可以了解下或許有所幫助2013-01-01