delphi作为asp.net的脚本语言配置出错。(50分)

H

homliu

Unregistered / Unconfirmed
GUEST, unregistred user!
各位大虾,我今天第一次学.net和asp,我知道这个问题很简单,
所以看完这个问题后可以骂我、扁我,但别忘了给我答案。
配置//-------------------------
<configuration>
<system.web>
<compilation debug="true">
<assemblies>
<add assembly="DelphiProvider" />
</assemblies>
<compilers>
<compiler language="Delphi" extension=".pas"
type="Borland.Delphi.DelphiCodeProvider,DelphiProvider" />
</compilers>
</compilation>
</system.web>
</configuration>
编译错误//-----------------------------
说明: 在处理向该请求提供服务所需的配置文件时出错。
请检查下面的特定错误详细信息并适当地修改配置文件。
分析器错误信息: 找不到文件或程序集名称“DelphiProvider”,
或找不到它的一个依赖项。
源错误:

行 3: <compilation debug="true">
行 4: <assemblies>
行 5: <add assembly="DelphiProvider" />
行 6: </assemblies>
行 7: <compilers>

源文件: c:/inetpub/wwwroot/web.config 行: 5
程序集加载跟踪: 下列信息有助于确定程序集“DelphiProvider”无法加载的原因。

=== Pre-bind state information ===
LOG: DisplayName = DelphiProvider
(Partial)
LOG: Appbase = file:///E:/MyWeb
LOG: Initial PrivatePath = bin
Calling assembly : (Unknown).
===
LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
LOG: Post-policy reference: DelphiProvider
LOG: Attemptingdo
wnload of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.0.3705/Temporary ASP.NET Files/vslive/b06469ae/94748836/DelphiProvider.DLL.
LOG: Attemptingdo
wnload of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.0.3705/Temporary ASP.NET Files/vslive/b06469ae/94748836/DelphiProvider/DelphiProvider.DLL.
LOG: Attemptingdo
wnload of new URL file:///E:/MyWeb/bin/DelphiProvider.DLL.
LOG: Attemptingdo
wnload of new URL file:///E:/MyWeb/bin/DelphiProvider/DelphiProvider.DLL.
LOG: Attemptingdo
wnload of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.0.3705/Temporary ASP.NET Files/vslive/b06469ae/94748836/DelphiProvider.EXE.
LOG: Attemptingdo
wnload of new URL file:///C:/WINNT/Microsoft.NET/Framework/v1.0.3705/Temporary ASP.NET Files/vslive/b06469ae/94748836/DelphiProvider/DelphiProvider.EXE.
LOG: Attemptingdo
wnload of new URL file:///E:/MyWeb/bin/DelphiProvider.EXE.
LOG: Attemptingdo
wnload of new URL file:///E:/MyWeb/bin/DelphiProvider/DelphiProvider.EXE.
 
我已经安装了delphi7,根据日志提示,没找到DelphiProvider.EXE(dll),是什么原因呢?
 
顶部