Is there any graphical designer for ASP.NET MVC?

后端 未结 4 1342
北海茫月
北海茫月 2020-12-25 10:34

I guess that most people that use Visual Studio had my same reaction when they created their first ASP.NET MVC project: where did the Design View end up?

4条回答
  •  感情败类
    2020-12-25 10:38

    If you are looking for designer to get instant feedback of the HTML/cshtml changes, this can be achieved by BrowserLink feature in Visual Studio. Fire the browser and hit the page/view you are currently designing and when you make any changes to the mark up/cshtml, hit the refresh button within Visual Studio, updates made to the code will be immediately pushed to browser.

    Other alternate is to use Chrome Developer tools (F12) and using "Edit as Html" feature.

    I know these alternates are not rich as native designer view support in Visual Studio, but these are some practical workarounds.

提交回复
热议问题