What program should designers use to modify asp.net MVC views? [closed]
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this questionI'm getting our company to switch from a classic asp, dreamweaver based design/develop workflow to a ASP.NET MVC based design develop workflow.
Is it recommended that designers use Visual Studio to edit Master pages and views? I'm thinking that it is ok because they might need to edit a config file or a controller开发者_如何学Python along the way. However, if there is a different "Best Practices" method/workflow then I'm all ears.
Our designers use Visual Studio 2010 for editing our MVC 3 views. It took a couple days of meetings to just go over all the information they needed to know, plus we're here to help them if they have questions. We're on a team of 4 (2 programmers, 2 designers) and we're all plugged in to TFS 2010, which is another reason to have them on Visual Studio.
There's no reason any designer worth their salary shouldn't be able to figure out how to use Visual Studio for editing markup.
The problem is the user doing the design work will never get a preview of what the view looks like without actually running the app. So basically they just need a good text editor, and Visual Studio is just as good as any here.
The nice thing is you can alter a view at runtime and refresh the page and you'll see your changes, which leads to a pretty efficient do markup -> refresh
development loop.
I agree with the others here that Visual Studio is the way to go but if there's some reason you don't want to use Visual Studio then WebMatrix maybe an alternative option in the future, but it currently only supports Razor views. It's underrated as a quick and simple way of editing Views, HTML, CSS, JavaScript etc.
精彩评论