473,386 Members | 1,710 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Use DreamWeaver AND VS.NET?

Hi,

I've been using Visual Studio.NET for a while to design WinForms and
Console apps and love it. Recently I had to a WebForms app. Because I have
no artistic skill whatsoever, I enlisted the help of one of our web
designers. She's a DreamWeaver expert, but I insisted that she use Visual
Studio because I was under the mistaken impression that DW doesn't support
WebForms, Visual Source Safe, and the other essential features that are
necessary to include her in our development project. Anyway, this web
designer really hates Visual Studio. She says that it must've been designed
for programmers, not designers, because the UI (what you and I call "Design
Mode") is horrible compared to that of DreamWeaver. She hates it so much
that she refuses to use it in future projects.

The thing is, I *need* Visual Studio.NET. I can't let her use DW if
there's no way to integrate her work into my VS.NET project. Is there a way
to allow her to use DW to design the .aspx file while I write the code in
the corresponding .cs file? It's a real puzzle for us, but it's necessary
that we be able to work together on projects since a) I can't design and b)
she can't code.

I know that VS.NET will divide a page into "aspx" and "cs" files. (I
want to keep it this way. I hate the idea of having all of the code in an
aspx file.) -- so I know that this division of labor must be possible... but
how does it all play out in the real world. Say we need to design a page
called "Login.aspx"... Would I go to the designer and say, "Ok, you design
Login.aspx in DreamWeaver"? Then she'd design it, give me the file, I'd add
the file to my VS.NET project + Source Safe and then create my own .cs file
to handle the Page_Load() event, etc? If I accidentally open the .aspx file
in VS.NET designer, will it become unreadable in DW? I just don't see how
it's all going to play out. Any advice?

keep on flowin',

I.P.
Jul 21 '05 #1
5 1929
I am in the same situation... and have been for years working with designers.

Teh best approach that i have found is to simply do the entire site prototype/UI/Design in pure HTML in dreamweaver first.
This then makes you go thorugh each step of a project and really understand the flow and how the user will use the site before any code is touched.

Once that is done you , the code, can take that html prototype and then create them as .aspx files and simply copy and paste her design in.
(of Course it would be quite silly to copy and past ethen code.... so build yourself a site convertser style system that will go through the directory of the prototype... then recreate each page... for the .cs files also.... making sure to create the internal classes etc and change all links from .htm to .aspx)

then by the timeyou have the site... the design is done and dusted... and simple mods can be done inside of vs.net

with all that said.

Even once the site is done.... and you are working inside of vs.net... there is nothing stopping anyone from working on the .aspx pages from inside of dreamweaver... we do it all the time and have no problems.

You can help me out with a problem now.... how do you run your version control and debuggin? do you do everyint local then deploy? or do you use remote debuggins and source safe on a dev server.?
"I.P. Freely" <ye*********@barnyard.glum> wrote in message news:%2****************@TK2MSFTNGP11.phx.gbl...
Hi,

I've been using Visual Studio.NET for a while to design WinForms and
Console apps and love it. Recently I had to a WebForms app. Because I have
no artistic skill whatsoever, I enlisted the help of one of our web
designers. She's a DreamWeaver expert, but I insisted that she use Visual
Studio because I was under the mistaken impression that DW doesn't support
WebForms, Visual Source Safe, and the other essential features that are
necessary to include her in our development project. Anyway, this web
designer really hates Visual Studio. She says that it must've been designed
for programmers, not designers, because the UI (what you and I call "Design
Mode") is horrible compared to that of DreamWeaver. She hates it so much
that she refuses to use it in future projects.

The thing is, I *need* Visual Studio.NET. I can't let her use DW if
there's no way to integrate her work into my VS.NET project. Is there a way
to allow her to use DW to design the .aspx file while I write the code in
the corresponding .cs file? It's a real puzzle for us, but it's necessary
that we be able to work together on projects since a) I can't design and b)
she can't code.

I know that VS.NET will divide a page into "aspx" and "cs" files. (I
want to keep it this way. I hate the idea of having all of the code in an
aspx file.) -- so I know that this division of labor must be possible... but
how does it all play out in the real world. Say we need to design a page
called "Login.aspx"... Would I go to the designer and say, "Ok, you design
Login.aspx in DreamWeaver"? Then she'd design it, give me the file, I'd add
the file to my VS.NET project + Source Safe and then create my own .cs file
to handle the Page_Load() event, etc? If I accidentally open the .aspx file
in VS.NET designer, will it become unreadable in DW? I just don't see how
it's all going to play out. Any advice?

keep on flowin',

I.P.

Jul 21 '05 #2
Thanks for your comments... Wow, that's a really complicated procedure that you've got there. I was hoping for an easier way.
You can help me out with a problem now.... how do you run your version control and debuggin? do you do everyint local then deploy? or do you use remote debuggins and source safe on a dev server.?
Well, we basically have one development server running on Win2003. Visual Studio.NET is installed there, along with Visual Source Safe. All developers log into this box via Remote Desktop, launch VS.NET, and do their work -- checking files in and out of VSS as necessary. Each user has his own "work directory" on that server.

Web-based projects are a bit trickier. As before, each developer has his own copy of the site in his work directory -- but IIS needs to be configured so that each developer has his own "application pool." This allows each developer to have his own dedicated IIS process that he can use for debugging without screwing everyone else up. There are some good articles about this on MSDN.

Does DreamWeaver have built-in integration with Visual Source Safe like VS.NET does?
Jul 21 '05 #3

"I.P. Freely" <ye*********@barnyard.glum> wrote in message news:e9****************@TK2MSFTNGP10.phx.gbl...
Thanks for your comments... Wow, that's a really complicated procedure that you've got there. I was hoping for an easier way.

Actually it does sound complicated... But to be honest it works so much easier.... As once the HTML prototype is done... then you have the design DONE... and you have also worked out every other usablity issue as well... so takes longer at the start but you finish quicker.... it is great as it is a faster way to see the finished product... and easier to change .

but you can change .aspx pages with dreamwever without hassles

You can help me out with a problem now.... how do you run your version control and debuggin? do you do everyint local then deploy? or do you use remote debuggins and source safe on a dev server.?
Well, we basically have one development server running on Win2003. Visual Studio.NET is installed there, along with Visual Source Safe. All developers log into this box via Remote Desktop, launch VS.NET, and do their work -- checking files in and out of VSS as necessary. Each user has his own "work directory" on that server.

Web-based projects are a bit trickier. As before, each developer has his own copy of the site in his work directory -- but IIS needs to be configured so that each developer has his own "application pool." This allows each developer to have his own dedicated IIS process that he can use for debugging without screwing everyone else up. There are some good articles about this on MSDN.

Does DreamWeaver have built-in integration with Visual Source Safe like VS.NET does?
Jul 21 '05 #4
Well, we basically have one development server running on Win2003. Visual Studio.NET is installed there, along with Visual Source Safe. All developers log into this box via Remote Desktop, launch VS.NET, and do their work -- checking files in and out of VSS as necessary. Each user has his own "work directory" on that server.
WOW.... that is crazy having to work via Remote Desktop..... Why dont you just have vs.net on each machine ?

Web-based projects are a bit trickier. As before, each developer has his own copy of the site in his work directory -- but IIS needs to be configured so that each developer has his own "application pool." This allows each developer to have his own dedicated IIS process that he can use for debugging without screwing everyone else up. There are some good articles about this on MSDN.
Thanx... i will look into that one...

Does DreamWeaver have built-in integration with Visual Source Safe like VS.NET does?
Yeah check out in manage sites.... Remote Info,, there is a option there for source safe
"I.P. Freely" <ye*********@barnyard.glum> wrote in message news:e9****************@TK2MSFTNGP10.phx.gbl...
Thanks for your comments... Wow, that's a really complicated procedure that you've got there. I was hoping for an easier way.
You can help me out with a problem now.... how do you run your version control and debuggin? do you do everyint local then deploy? or do you use remote debuggins and source safe on a dev server.?
Well, we basically have one development server running on Win2003. Visual Studio.NET is installed there, along with Visual Source Safe. All developers log into this box via Remote Desktop, launch VS.NET, and do their work -- checking files in and out of VSS as necessary. Each user has his own "work directory" on that server.

Web-based projects are a bit trickier. As before, each developer has his own copy of the site in his work directory -- but IIS needs to be configured so that each developer has his own "application pool." This allows each developer to have his own dedicated IIS process that he can use for debugging without screwing everyone else up. There are some good articles about this on MSDN.

Does DreamWeaver have built-in integration with Visual Source Safe like VS.NET does?
Jul 21 '05 #5

WOW.... that is crazy having to work via Remote Desktop..... Why dont you just have vs.net on each machine ?

Well, the problem is that not all developers are on the same network. Some might work from their office, some from home, etc... It's true that we could have each developer running their own copy of VS.NET on their own machine, but if we did this, a ton of bandwidth would be used when doing massive check-ins, checkouts to Visual Source Safe... and if the connection drops (which is frequently the case with Roadrunner cable modem service), there is a chance of corruption. With Remote Desktop, very little bandwidth is used, and if someone runs into trouble I can intervene in the user's session to give tech support... I suppose this wouldn't be a very scalable solution for large groups of developers, but for 2-3 developers it works nicely..
Jul 21 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: davidshook | last post by:
I am a begginer with not too much time on my hand. I do some html pages with Dreamweaver and with some minor Flash actionscript and I have a minor ability (with the help of lots of tutorials) to do...
11
by: jm | last post by:
Somebody on here recommended Dreamweaver with PHP. I am coming from (still using really) ASP and ASP.NET. PHP is more like ASP and not a whole lot like .net, but I wanted to know how Dreamweaver...
0
by: Gregory | last post by:
I am using OS X and Dreamweaver MX. I am trying to make a connection to the MySQL Server from within Dreamweaver using the Applications panel and clicking on the "+". A window opens asking for:...
3
by: Richard Lawson | last post by:
I am working on a site which is written in Dreamweaver. Is it possible to write pages in ASP inside of a Dreamweaver site? Rich
0
by: Zorba.GR | last post by:
Macromedia Dreamweaver MX 2004 v7.0.1 Incl Keymaker, and Addons, other Workhouseboys Design The Transmitter Buttons v1.0 for Dreamweaver MX WebAssist WA eCommerce Suite v2.01 RETAIL for...
1
by: E. Wise | last post by:
I'm seeking some solid information on how I as a programmer can work with a Macromedia designer on my ASP .NET applications. Here's the specific scenario: Company has a intranet area that is...
4
by: Ian | last post by:
Hi there, Has anybody got any tips or recommendations for using Vs.Net and Dreamweaver 2004 together? I like to use dreamweaver as the layout tool as for me it just seems a little more...
171
by: tshad | last post by:
I am just trying to decide whether to split my code and uses code behind. I did it with one of my pages and found it was quite a bit of trouble. I know that most people (and books and articles)...
4
by: Adam Knight | last post by:
Hi all, I am using a dreamweaver template for a web app i am working on. Each time i update the template my page directives at the top of the associated pages gets removed. Anyone had...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.