博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

asp.net 在分析向此请求提供服务所需资源时出错

Posted on 2007-07-03 14:35  qqhe325  阅读(8622)  评论(0编辑  收藏  举报
 1 “/FTB”应用程序中的服务器错误。
 2 --------------------------------------------------------------------------------
 3 
 4 分析器错误 
 5 说明: 在分析向此请求提供服务所需资源时出错。请检查下列特定分析错误详细信息并适当地修改源文件。 
 6 
 7 分析器错误信息: 找不到文件或程序集名称“FreeTextBox”,或找不到它的一个依赖项。
 8 
 9 源错误: 
10 
11 
12 行 1:  <%@ Page Language="vb" %>
13 行 2:  <%@ Register TagPrefix="ftb" Namespace="FreeTextBoxControls" Assembly="FreeTextBox" %>
14 行 3:  <script runat="server">
15 行 4:  
16  
17 
18 源文件: c:\inetpub\wwwroot\FTB\FTB_1.6.3_zh_Source\test.aspx    行: 2 
19 
20 程序集加载跟踪: 下列信息有助于确定程序集“FreeTextBox”无法加载的原因。
21 
22 
23 === Pre-bind state information ===
24 LOG: DisplayName = FreeTextBox
25  (Partial)
26 LOG: Appbase = file:///c:/inetpub/wwwroot/FTB
27 LOG: Initial PrivatePath = bin
28 Calling assembly : (Unknown).
29 ===
30 
31 LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
32 LOG: Post-policy reference: FreeTextBox
33 LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/ftb/cb228751/eac56167/FreeTextBox.DLL.
34 LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/ftb/cb228751/eac56167/FreeTextBox/FreeTextBox.DLL.
35 LOG: Attempting download of new URL file:///c:/inetpub/wwwroot/FTB/bin/FreeTextBox.DLL.
36 LOG: Attempting download of new URL file:///c:/inetpub/wwwroot/FTB/bin/FreeTextBox/FreeTextBox.DLL.
37 LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/ftb/cb228751/eac56167/FreeTextBox.EXE.
38 LOG: Attempting download of new URL file:///C:/WINDOWS/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files/ftb/cb228751/eac56167/FreeTextBox/FreeTextBox.EXE.
39 LOG: Attempting download of new URL file:///c:/inetpub/wwwroot/FTB/bin/FreeTextBox.EXE.
40 LOG: Attempting download of new URL file:///c:/inetpub/wwwroot/FTB/bin/FreeTextBox/FreeTextBox.EXE.
41 
42  
43 
44 
45 --------------------------------------------------------------------------------
46 版本信息: Microsoft .NET Framework 版本:1.1.4322.573; ASP.NET 版本:1.1.4322.573 
碰到这种问题,通过查看 程序集加载跟踪 有助于问题的解决,从31到40行程序在不断寻找FreeTextBox程序集,但都没找到,c:/inetpub/wwwroot/FTB/肯定没有bin,建一个旧会解决问题。
在iis中配置网站的时候给含有bin的目录创建应用程序,一般都能解决问题.