When developing a web application using ASP.NET, do you have any hints about how to separate the development of content/functionality from the design, so that the two can be developed separately and in parallel?
The situation is:
- Customer has agreed on what functionality they want
- Customer is changing their mind about the appearance (styling and layout) of the pages
- Web designer is non-expert:
- Isn't developing clean CSS-based layout from scratch
- Is taking various table-based layouts (with CSS) from 3rd-party sites, to use as an example/prototype of the layout to discuss with the customer
Given this, how to start coding the functionality before the table-based layout is finalized?
I thought that one way to do it might be:
- Code the functionality (which includes creating the active elements on each page) without caring about (specifying) their layout and styling
- Then, at the end, after the designer and the customer have agreed on a design, then cut-and-paste the active elements into the designer's prototype pages.
Is this the only or the best way to do it? What other ways are there? Any hints, tips, or tricks to make this easier?