Etienne
Etienne

Reputation: 7201

Working with Dreamweaver and ASP.NET - is this recommended?

I am a ASP.NET 3.5 web developer using VS 2008. I just started at a new company and there are alot of Web Designers here (never worked with Web Designers before). They all use Dreamweaver CS3 and PhotoShop (something i know nothing about).

What I would like to know is the following:

Thanks in advance!

Upvotes: 1

Views: 1667

Answers (1)

Mark Dickinson
Mark Dickinson

Reputation: 6633

They will be able to work with the markup in your aspx pages, as long as you aern't using complex server controls. Keep the markup fairly simple and you'll be OK. With master pages, they should be able to handle the layout stuff they need, and leave you to worry about the content areas. If you have the opportunity, try to go down a MVC route, this way you are encouraged to keep the code and the markup separate, and the designers will have an easy time seeing your aspx and ascx markup. Designers aren't evil, just different :)

Upvotes: 1

Related Questions