I downloaded the YAF_v1.9.3-final_Source from the site. I am trying to run the source code in visual studio 2008.
But I am getting the six errors and all of them are regarding to the
ScriptManager.
Error 1: The name 'ScriptManager' does not exist in the current context.
Error 2: The type or namespace name 'ScriptManager' could not be found (are you missing a using directive or an assembly reference?)
Error 3: The best overloaded method match for 'System.Web.UI.ControlCollection.Add(System.Web.UI.Control)' has some invalid arguments.
Error 4: Argument '1': cannot convert from 'ScriptManager' to 'System.Web.UI.Control'
I checked for the solutions and added the following lines of code in my web.config file, but the problem did not resolve yet:
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
Edited by user
2009-06-04T00:42:41Z
|
Reason: Not specified