Best Way to design a website ?

  • Thread starter Thread starter Arsalan
  • Start date Start date
A

Arsalan

Which softwares do pros recommend on making ASP.NET website ? Which
software do you prefer ? I think Visual Studio is not that good at making a
website, so what combination of softwares do u guys use to make a website ?
 
Depends on what you mean by "make". I mean I love Visual Studio for working
in the code, but it's Design view is poor. If that's what you are referring
to then I use a text editor.

P.S... "Best" is WAY too subjective, I'd suggest avoiding that
 
To tell you the truth. I have both Visual Studio and Dreamweaver open at the
same time. I use VS.NET to create all of my aspx pages and it alsocreates
all the assoc aspx.vb files for me. Then I use dreamweaver to edit the html
layout in the aspx page. e.g layout the tables, cells, and also to create the
css stylesheet. Then I switch back to vs.net to add the web server controls
to the page designer because this adds the declaration to the code behind
page as well. And then of course you build in vs.net. Its alot of back and
forth; but vs 2005 should solve this issue
 
I use Visual Studio.Net for programming, and FrontPage for developing the
HTML portion of the app.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.
 
The Design view of VS keeps reformatting the apsx page, making it hard to
keep track of matching closing tags. Does Dreamweaver require a lot of
learning? I just want to use it for desgining the table layout and checking
matching tags.
 
Dear Koder:

What do you do with the stuff from Dreamweaver? Just cut and paste it into
your VS html code? I've been thinking about getting Dreamweaver myself . . .

Sandy
 
Arsalan said:
Which softwares do pros recommend on making ASP.NET website ? Which
software do you prefer ? I think Visual Studio is not that good at
making a website, so what combination of softwares do u guys use to make
a website ?

For managing static content you might check this out:
http://www.atozed.com/IWS/


--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programming is an art form that fights back"

Get your ASP.NET in gear with IntraWeb!
http://www.atozed.com/IntraWeb/
 
Yes, but Dreamweaver has lots of pre-built in functions which makes life
easier, but in VS you have to make everything from the scratch :-)
 
Back
Top