Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET MVC development with Notepad?

So do I NEED Visual Studio of some flavor to do ASP.NET MVC development or could I technically do it all with a simple text editor? If YES, please tell me the catches, like if there is anything special I would have to do besides making the folder structure right and making sure my code is solid, etc.

like image 398
MetaGuru Avatar asked Jan 11 '10 17:01

MetaGuru


2 Answers

Define 'NEED', technically all you need is this: alt text
(source: geeks3d.com)

like image 81
Diadistis Avatar answered Sep 29 '22 14:09

Diadistis


You need a compiler, but you could use Notepad as your editor if you really wanted to. However, I would recommend using Visual Studio - it has all the help and support (IntelliSense etc.) you need.

You can download the Visual Studio Express edition for web development for free. The MVC extensions work with this.

like image 40
ChrisF Avatar answered Sep 29 '22 12:09

ChrisF