When i want to use Visual Studio to open new Telerik MVC project, everything is OK but, it is not Bootstrap3. It shows, old design of ASP.net projects.
Should i need to configure anything ?
Regards.
You don't have the latest Visual Studio template.
Check here: http://docs.telerik.com/kendo-ui/aspnet-mvc/vs-integration/introduction
Related
When creating a new project, there are a lot of options in the template...
How do you add more templates to Visual Studio Project. I tried to update, but it did not work.
I saw one version with a lot of items, like Web forms application, MVC web application, ...
And mine is only showing: asp.net web application...
[edit] and how do you add the blue template from VS2013 (with your logo here), instead of this black template in VS2017.
I've read about Single-Page Applications recently and wanted to try one out. After watching Steve Sanderson's presentation (http://channel9.msdn.com/Events/TechDays/Techdays-2012-the-Netherlands/2159) I wanted to create a Single-Page App in my Visual Studio 2010 and test it out myself. But then I found out I can't choose an SPA template anymore, as it was removed in RC version.
Now, the question is - what should I do in Visual Studio 2010 (with MVC4 installed) to be able to create an SPA? I'd like to use KnockoutJS for UI and Upshot for data, both of which I'm able to install using Nuget. I haven't found anything relevant on the Web, every single page I've been to is telling me to use the SPA template, which has been removed since.
Thanks for any suggestion!
SPA was excluded from RC because it wasn't ready in time for MVC4 release. Official ASP.NET SPA page. You can create project with MVC template and scaffold SPA via NuGet (SPA scaffolding)
For Visual Studio 2010, try using Hot Towel by John Papa.
Create an empty MVC4 app, then install a Nuget from Package Manager Console
PM> Install-Package HotTowel
I have Visual Studio 10. I installed SP1 and I can not create an MVC web project. Is there anything else I need to install?
As mentioned, you will need to do use File -> New -> Project and under Web you should be able to see the MVC project templates.
Reference: I encountered the same when I was just starting with MVC.
From your comments it looks as if you have the solution you're seeking, however I would like to mention for the sake of others that if you want to develop an MVC3 application on VS2010 SP1, you will still need to install it.
More details here.
I'm not aware of any good reason to not use MVC3 for new development, as it's contains many improvments over MVC2.
I maintain a couple of legacy ASP.Net webforms solutions, that I have upgraded to use .Net 4.
However, they appear to be different in Visual Studio 2010, than other projects. If I open properties for one of the web projects in the solution, it looks like this:
The old-school dialog from previous versions. No fancy publishing and other neat "new" stuff.
What is going on here, and how do I fix it?
You appear to have created a New Web Site...
You're looking for Web Application it sounds like. Go to File > New > Project..., and ASP.NET Web Application is under there. You may also want ASP.NET Empty Web Application as it doesn't have some auto-generated junk in it.
I am working on this project which was created using ASP.NET MVC 2 RC.
The "Add" has disappeared when I right click on the files.
My problem is similar to this:
VS 2010 beta 2: ASP.NET MVC2 project cannot add Areas
but the WalkThrough answer didn't help.
example: "Add" option is there for "Controllers" folders but "Add -> Controllers" is missing. There is no "Add" for individual files at all.
Note: I do not have any problems if I create new MVC 2 projects. So the problem is not with the VS installation.
Please help!! Thanks
*not the answer.
The only way which I thought would work was to create a new solution inside the old solution and copy/overwrite all the files from the old one to the new one. I got the Add options back but got 100+ referencing errors when I tried to build/run the project. So don't try this.