2009-12-12 39 views
0

我試圖從構建一個社交網站ASP.NET 3.5社交網絡本書。當我運行代碼,我看到以下問題:問題 - 無法加載文件或程序集

 
System.IO.FileNotFoundException: Could not load file or assembly 'Fisharoo.FisharooWeb' 
or one of its dependencies. The system cannot find the file specified. 

Source Error: 
     { 
      _view = view; 
      _accountService = ObjectFactory.GetInstance(); 
      _redirector = ObjectFactory.GetInstance(); 
     } 

[FileNotFoundException: Could not load file or assembly 'Fisharoo.FisharooWeb' 
or one of its dependencies. The system cannot find the file specified.] 

[StructureMapException: StructureMap Exception Code: 101 

希望它有簡單的解決方案

回答

1

你好像缺少一個名爲Fisharoo.FisharooWeb.dll彙編文件。本書是否有伴隨CD/DVD,或者您可以下載示例源代碼的網站?基本上,您需要獲取缺失文件的副本,並將其放在您網站的bin文件夾或全局程序集緩存(C:\ Windows \ Assembly)中,具體取決於本書中的說明。

這是link,可能有幫助。顯然,本書的附錄提供了關於如何設置代碼的說明。

希望這會有所幫助。

相關問題