corprate starter kit 5.0 SP1 - cant load
When i run the sampe site i got following error
Hi,
The first reason of the problem might be that you reference to another module/control that has been built using the old .dll files.
First of all you should delete the references of your controls / modules / and add the new ones from the bin folder of your SitefinityWebApp project. After that you have to build your custom modules / or controls /, delete the old references from the SitefinityWebApp project and add the newly built dlls of your updated modules and controls. Finally you have to build the entire solution and the problem should be fixed.
The second reason of the problem might be connected to the version of the reference so can you please try to use bindingRedirect element it in you web.config file:
http://msdn.microsoft.com/en-us/library/eftw1fys.aspx
For example you can use the source code bellow and make the necessary changes in your versions:
<runtime>
<assemblyBinding xmlns=
"urn:schemas-microsoft-com:asm.v1"
>
<dependentAssembly>
<assemblyIdentity name=
"Telerik.Sitefinity"
publicKeyToken=
"b28c218413bdf563
"
culture=
"neutral"
/>
<bindingRedirect oldVersion=
"2011.3.1115.40"
newVersion=
"2012.1.215.40"
/>
</dependentAssembly>
</assemblyBinding>
</runtime>