I can't get rid of this error during runtime
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: CS1705:
Assembly 'MvcValidatorToolkit, Version=1.0.0.30828, Culture=neutral,
PublicKeyToken=null' uses 'System.Web.Extensions, Version=3.6.0.0,
Culture=neutral, PublicKeyToken=31bf3856ad364e35' which has a higher
version than referenced assembly 'System.Web.Extensions,
Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'
Source Error:
|
[No relevant source lines]
|
Source File:
Line: 0
Compiler Warning Messages:
Warning:
CS1684: Reference to type 'System.Web.Mvc.Controller' claims it is
defined in
'c:\WINDOWS\assembly\GAC_MSIL\System.Web.Extensions\3.5.0.0__31bf3856ad364e35\System.Web.Extensions.dll',
but it could not be found
Source Error:
|
[No relevant source lines]
|
Warning: CS1684: Reference to type 'System.Web.Mvc.ViewPage'
claims it is defined in
'c:\WINDOWS\assembly\GAC_MSIL\System.Web.Extensions\3.5.0.0__31bf3856ad364e35\System.Web.Extensions.dll',
but it could not be found
Source Error:
|
[No relevant source lines]
|
Show Detailed Compiler Output:
Microsoft (R) Visual C# 2008 Compiler version 3.5.21022.8 for Microsoft (R) .NET Framework version 3.5 Copyright (C) Microsoft Corporation. All rights reserved.
c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\5b76b49d\973a2fa7\assembly\dl3\4171d944\f4328ec6_34c1c801\MvcValidatorToolkit.DLL: error CS1705: Assembly 'MvcValidatorToolkit, Version=1.0.0.30828, Culture=neutral, PublicKeyToken=null' uses 'System.Web.Extensions, Version=3.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' which has a higher version than referenced assembly 'System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' c:\WINDOWS\assembly\GAC_MSIL\System.Web.Extensions\3.5.0.0__31bf3856ad364e35\System.Web.Extensions.dll: (Location of symbol related to previous error) c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\5b76b49d\973a2fa7\assembly\dl3\4171d944\f4328ec6_34c1c801\MvcValidatorToolkit.DLL: warning CS1684: Reference to type 'System.Web.Mvc.Controller' claims it is defined in 'c:\WINDOWS\assembly\GAC_MSIL\System.Web.Extensions\3.5.0.0__31bf3856ad364e35\System.Web.Extensions.dll', but it could not be found c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\5b76b49d\973a2fa7\assembly\dl3\4171d944\f4328ec6_34c1c801\MvcValidatorToolkit.DLL: warning CS1684: Reference to type 'System.Web.Mvc.ViewPage' claims it is defined in 'c:\WINDOWS\assembly\GAC_MSIL\System.Web.Extensions\3.5.0.0__31bf3856ad364e35\System.Web.Extensions.dll', but it could not be found
|
function OnToggleTOCLevel1(level2ID)
{
var elemLevel2 = document.getElementById(level2ID);
if (elemLevel2.style.display == 'none')
{
elemLevel2.style.display = '';
}
else {
elemLevel2.style.display = 'none';
}
}