This is a migrated thread and some comments may be shown as answers.

Can I do MVC development with the Telerik version I am licensed for

1 Answer 68 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Bill
Top achievements
Rank 1
Bill asked on 09 Dec 2013, 02:04 PM
I have a Telerik ultimate license for Q1 2012

I have done strictly ASP.NET Ajax dev so far but I am currently working on an MVC project.
Can I use the versions I have with MVC?

MVC: 4
Entity framework: 6

Telerik Extensions for ASP.net MVC 2012.1.214
Telerik Web.UI 2012.1.215

1 Answer, 1 is accepted

Sort by
0
Marin Bratanov
Telerik team
answered on 11 Dec 2013, 05:02 PM
Hello Bill,

The Telerik Extensions for ASP.net MVC 2012.1.214 should be compatible with MVC4 and you can use them for your project. You may need to add a binding redirect if the project was originally built for MVC3:
<runtime>
  <assemblyBinding xmlns="urn:Schemas-microsoft-com:asm.v1">
    <dependentAssembly>
      <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
      <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
    </dependentAssembly>
    <dependentAssembly>
      <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
      <bindingRedirect oldVersion="1.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
    </dependentAssembly>
    <dependentAssembly>
      <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
      <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
    </dependentAssembly>
  </assemblyBinding>
</runtime>

As for the RadControls for ASP.NET AJAX (Telerik Web.UI 2012.1.215 that you have) - they are not tested with MVC and we cannot guarantee their compatibility. They are built around the WebForms paradigm and heavily rely on the page lifecycle that it has. Thus, if you have "regular" webforms in your project (e.g., in iframes) it may be possible to integrate the controls in them, but we cannot guarantee their compatibility or support such scenarios.

Regards,
Marin Bratanov
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
Tags
General Discussions
Asked by
Bill
Top achievements
Rank 1
Answers by
Marin Bratanov
Telerik team
Share this question
or