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

[Solved] MVC Visual Studio Extensions does NOT recognize Visual Web Designer 2010 Express

4 Answers 154 Views
Installer and VS Extensions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Leo
Top achievements
Rank 1
Leo asked on 30 Apr 2012, 01:41 AM
I downloaded the latest installer (Telerik_Extensions_for_ASPNET_MVC_2012_1_301_OpenSource.msi). When I run this package, it only recognized Visual Studio 2008, but not Visual Web Designer 2010 Express that has also been installed on my computer (please refer to the attached screen-shot for details).

Is this the limitation of Open Source version of Visual Studio Extensions?

4 Answers, 1 is accepted

Sort by
0
Chavdar Dimitrov
Telerik team
answered on 01 May 2012, 09:42 AM
Hello Li,

Thank you for contacting us.

All the Visual Studio Extensions support Visual Studio Professional edition or above. This is not limitation of the Open Source version of the Telerik MVC Extensions, but comes from a technical limitation of the IDE itself.

If you have Visual Studio 2010 Professional (or above) or VS11 Beta Professional (or above), they will be listed in the features tree too.

Please, do not hesitate to come back to us, if you have any additional questions.

All the best,
Chavdar,
the Telerik team
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 Telerik Extensions for ASP.MET MVC, subscribe to their blog feed now.
0
Leo
Top achievements
Rank 1
answered on 02 May 2012, 05:40 AM
Hi Chavdar, Thanks for explaining the limitation of express edition of Visual Studio. On the other Hand, I found it is actually easy to manually plug Telerik MVC Extension into my project. So even I have to use VWD 2010 Express for a while, it won't be a huge loss on this matter. The bottom line is that with Telerik MVC Extension, moving from ASP.NET Web Form to MVC brings less pain!
0
Bill Anderson
Top achievements
Rank 1
answered on 23 Jun 2012, 02:15 PM
I have the same situation with using Visual Web Designer 2010 Express... how did you manually plug in the extensions?
0
Leo
Top achievements
Rank 1
answered on 23 Jun 2012, 04:58 PM

Hi Bill,

 

Since the manually approach I mentioned in previous message only involves a few simple steps, so I called it "easy ". Here is the procedure that works for me:

 

1. After MVC 3 component has been installed in your system, add a reference to "Telerik.Web.Mvc.dll" in Solution Explore in Visual Web Designer 2010 Express.

 

2. Register Telerik MVC namespace to web.config file, like this:

 

<add namespace="Telerik.Web.Mvc.UI"/>.

 

-- Note: The location hierarchy is "system.web.webPages.razor --> namespaces"

 

3. Register Telerik script to _Layout.cshtml file, like this:

 

    <!-- other content -->

    @(Html.Telerik().ScriptRegistrar())

</body>

</html>

 

-- Note: You may also need to copy Telerik script if you haven't done so.

 

4. Register Telerik CSS to _Layout.cshtml file, like this:

 

<head>

   <title>@ViewBag.Title</title>

    @(Html.Telerik().StyleSheetRegistrar()

                      .DefaultGroup(group => group

                          .Add("telerik.common.min.css")

                          .Add("telerik.vista.min.css")

                     )

 

-- Note: You may also need to copy Telerik content if you haven't done so.

 

That's all. In summary, there are four steps to make Telerik MVC 3 component work in your project. If you have VS professional version, I think the above procedure will be taken care of automatically by Teleric Visual Studio Extension.

 

Cheers,

Leo

 

Tags
Installer and VS Extensions
Asked by
Leo
Top achievements
Rank 1
Answers by
Chavdar Dimitrov
Telerik team
Leo
Top achievements
Rank 1
Bill Anderson
Top achievements
Rank 1
Share this question
or