This example project is using MVC1.0, you need convert MVC1.0 to MVC2.0, please follow steps:
1. Open web.config
2. replace all "System.Web.Mvc, Version=1.0.0.0" with "System.Web.Mvc, Version=2.0.0.0"
3. Add the following lines within "Configuration" section:
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
<bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
4. Save web.config and run it again.
Regards,
Eric