DVBBS安装

安装好IIS,SQLSERVER2000以及.NET Framework 1.1后,出现如下错误:

Server Error in '/' Application.

Compilation Error

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: CS0246: The type or namespace name 'Dvbbs' could not be found (are you missing a using directive or an assembly reference?)

Source Error:


Line 1:  <%@ Page Debug="True" %>
Line 2: <%@ Import Namespace="Dvbbs.Utils" %>
Line 3: <script language="C#" runat="server">
Line 4: protected override void OnInit(EventArgs e)

Source File: c:/inetpub/wwwroot/bbn/install/environment_test.aspx    Line: 2


Show Detailed Compiler Output:
Show Complete Compilation Source: function OnToggleTOCLevel1() { var elemSrc = window.event.srcElement; var elemLevel2 = document.all(elemSrc.level2ID); if (elemLevel2.style.display == 'none') { elemLevel2.style.display = ''; if (elemSrc.usesGlyph == '1') elemSrc.innerHTML = '6'; } else { elemLevel2.style.display = 'none'; if (elemSrc.usesGlyph == '1') elemSrc.innerHTML = '4'; } }

Version Information: Microsoft .NET Framework Version:1.1.4322.573; ASP.NET Version:1.1.4322.573

 

 

最后是这样解决的:

将web.config文件和bin文件夹放到网站根目录下

 

你可能感兴趣的:(Microsoft,assembly,asp.net,compiler,dependencies,compilation)