程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> asp提示Server 對象 錯誤 ASP 0178 : 80070005

asp提示Server 對象 錯誤 ASP 0178 : 80070005

編輯:關於ASP編程
尤其是剛安裝的那些組件,需要手工設置下權限,因為為了安全考慮,權限限制的很低。大家可以參考下面的方法設置下。

錯誤提示:
Server 對象 錯誤 'ASP 0178 : 80070005'
Server.CreateObject 訪問錯誤
../asp.asp,行 123
檢查權限時,對 Server.CreateObject 的調用失敗。拒絕對此對象的訪問。

錯誤如提示,存在以權限。
解決方法:
1. 調用"server.createObject("mssearch.application")"的時候發生錯誤,解決如下:
開始->運行->dcomcnfg
找到"mssearch"(這個名稱取決於你調用的Object是什麼),然後右鍵->Properties->security把三個權限都給everyone即可,其實第一個即可.

2. 出現上述問題時,原因確實是權限的問題。
一種解決辦法是修改IIS的匿名訪問的權限。
第二種最簡單的辦法就是將你的組件換個地方注冊,特別是不要放到桌面或C盤的(系統盤)的某些特殊目錄下注冊;而應該放到如D,E等盤。原因是因為通常你的IIS所使用的帳號都是系統權限較低的帳號,如果你是以自己的帳號登錄,那麼桌面的訪問的權限可能比IIS的帳號權限高。

3. 查了MS的資料庫,解決的方法如下,fromaspxuexi.com asp學習網:
This article was previously published under Q315454
SYMPTOMS
When you attempt to browse to an Active Server Page (ASP) database results page created in Microsoft FrontPage, you may receive an error message similar to the following:
程序代碼:
Server object error 'ASP 0178 : 80070005'
Server.CreateObject Access Error
../config/coon.asp, line 5

The call to Server.CreateObject failed while checking permissions. Access is denied to this object.
CAUSE
This behavior can occur if incorrect NTFS permissions are defined for your "%ProgramFiles%\Common Files\System" folder.
RESOLUTION
To resolve your issue, reset the NTFS permissions on the "%ProgramFiles%\Common Files\System" folder. To do this, follow these steps:
1.. Open Windows Explorer. To do this, right-click Start and then click Explore on the shortcut menu.
2.. In Folders view, expand the "%ProgramFiles%\Common Files\System" folder.
3.. Right-click the folder and click Properties on the shortcut menu.
4.. Click the Security tab.
5.. Add Everyone to the existing permissions, give at least Read permissions to Everyone, and apply these new settings to all files and subfolders.
6.. Click OK.
--------------------------------------------------------------------------------

如果是本機調試:
要解決問題, 重新設置 " %ProgramFiles%\Common Files\System " 文件夾的NTFS 權限。 要這樣做, 請按照下列步驟操作:
1. 打開 Windows 資源管理器。
右鍵單擊 開始 , 然後單擊快捷菜單上 浏覽 。
2. 在 文件夾 視圖, 展開 " %ProgramFiles%\Common Files\System " 文件夾。
3. 右擊文件夾並單擊快捷菜單上 屬性 。
4. 單擊 安全 選項卡。
5. 至少授予 Everyone 添加現有權限, 讀取 權限向 Everyone , 並這些新設置應用於所有文件和子。
6. 單擊 確定 。

--------------------------------------------------------------------------------

如果是服務器,給相關的dll進行everyone權限吧。
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved