How to outsource web design in Asp.Net Mvc application

I want to transfer the draft of my Asp.Net Mvc web application.

How can I make it easier for the designer to work on the site design and it's easier to connect it to my main page and css file?

Views will display items such as grids and another information display.

My application is still at an early stage of development. Do I have to fill out an application first, or should I create an entire website and then develop the application in accordance with the design?

What files should be sent to them to start design work?

+4
source share
2 answers

One way would be to create simple frames of HTML code. They display all the pages, how they link together, the data that will be displayed on these pages, and functionality.

Both the developer and the developer can use this wired framework to work. The developer can first create a dynamic version of the wire frame, while the developer will develop the best solution for displaying the data and functionality contained in wireframes.

0
source

This, in my opinion, has always been a problem not only with MVC. Designers and developers have always struggled for control over the page throughout their life cycle.

I think the MVP pattern, and thus the MVC, is very pleasant to finally reach the holy grail.

For example, here in the muppet labs, we first write all the code to the end of the code along with our tests. Meanwhile, designers are busy drawing beautiful photographs that they can cut off later.

Once the code is executed, we will look at the design, define what a partial view is, etc., slightly modify the code to create basic views and partial views that are functional but not beautiful.

designers then take views and partial views and apply their styles to them.

There may be additional settings necessary for viewing and partial viewing in order to fit into the design, but in general the process works blacker than with traditional web forms.

+1
source

Source: https://habr.com/ru/post/1305467/


All Articles