How can I implement a site with ASP.NET MVC without using Visual Studio?

前端 未结 4 2050
没有蜡笔的小新
没有蜡笔的小新 2020-12-04 13:38

I have seen ASP.NET MVC Without Visual Studio, which asks, Is it possible to produce a website based on ASP.NET MVC, without using Visual Studio?

And the a

4条回答
  •  春和景丽
    2020-12-04 14:00

    You would do exactly what you did above, because you wouldn't use a model or controller in a hello world app.

    All visual studio does is provide you with file creation wizards, so in theory, all you need to do is create the right files. If you want detailed specifications for the MVC project structure, good luck, most documentation is written on the assumption you are using visual studio, but you might be able to go through a tutorial step by step, and puzzle it out.

    Your best bet is to find a downloadable demo project, use visual studio to reverse engineer the project structure, or try one of the open source .net IDE.

提交回复
热议问题