Best way for an external (remote) graphics designer to style ASP.NET MVC 4 app?
Posted
by
Tom K
on Programmers
See other posts from Programmers
or by Tom K
Published on 2013-07-03T09:29:31Z
Indexed on
2013/07/03
11:16 UTC
Read the original article
Hit count: 147165
My customer has his own graphics designer he wants to use to style his web application we're building in ASP.NET MVC 4.
Our solution is in Bitbucket, but if he can't run it what choices do we have? I doubt he uses Visual Studio 2012.
One idea is for us to publish to our solution to a file system, send it to him, have him create a local IIS website on his machine (assuming he isn't using a Mac). Mocking data or pointing to a test SQL in Azure isn't a problem. Then he can make changes to .css and .cshtml files. Will this even work?
The point is that he needs to be able to test his changes. I know he can modify the views and just check-in. But he needs to deliver a working design. So it seems inefficient.
The graphics designer will have access to our test site so he can see how it works, what data we have and fields. Another idea is for him to build a static mock site using just HTML/CSS. Later I'd integrate his styles into customer's solution, split his html into partial views which we use and add Razor syntax. Again, we'd like to leverage graphics designer for all of this.
Is there a best practice documented around this subject? How do other teams deal with this situation?
© Programmers or respective owner