Click here to Skip to main content
15,921,577 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have installed visual studio 2010 and made half of my project in it. Now i was reading about mvc, in that i was asked to install visual studio express and then visual web developer 2010.
My query is that if i install visual web developer will it work with my previously installed visual studio 2010. or my whole work will be damaged?
what should i do? i dont want my project to be damaged and i also want to learn mvc .
Is visual studio express 2010 work within the visual studio 2010 like the ajax tools?

I dont know what to do.. any suggestions??

What I have tried:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace MvcApplication1.Controllers
{
[HandleError]
public class HomeController : Controller
{
public ActionResult Index()
{
ViewData["Message"] = "Welcome to ASP.NET MVC!";

return View();
}

public ActionResult About()
{
return View();
}
}
}
Posted
Updated 9-Mar-16 23:11pm
Comments
Slacker007 10-Mar-16 6:42am    
You should be fine. Make a backup of your projects and keep in source control or another backup directory on your local machine, and then perform the installs. I suspect that all you are really installing are web templates and template projects, and your existing MVC project will not be "touched".

By the way, their are traditional ASP.Net web forms and then there is MVC - two completely different beasts. HTH.
Member 12355460 10-Mar-16 7:11am    
thank you !!!

1 solution

If you have the professional edition of Visual Studio 2010 it should support web development; see Introducing Visual Studio[^].
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900