Whats the best web authoring software?

exodus454

Senior member
Apr 11, 2004
465
0
0
Going to be launching my own photography website (intended to be an online portfolio) in awhile, and I need some decent web authoring software. I'm quite fluent in HTML, but I'd rather not have to write the entire thing manually.

I'm thinking of using either Frontpage (which I have now and am not a huge fan of), or something from Adobe or Macromedia. Can someone give me a suggestion on which program to use? I'm open to software made by other companies as well, and money really isn't an object.


Any help would be great. Thanks guys.
 

igowerf

Diamond Member
Jun 27, 2000
7,697
1
76
NVU is free. A lot of free web authoring software is listed in the freeware thread stickied at the top of this forum.
 

MangoTBG

Diamond Member
Apr 28, 2003
3,101
0
76
By no means am I an expert developer. I have, however, tinkered with FP and Dreamweaver. I really really like DW. I, too, am not a fan of FrontPage. If you are looking for reassurance for going with DreamWeaver, let this be it.
 

Atheus

Diamond Member
Jun 7, 2005
7,313
2
0
Notepad, or a programmer's text editor.

I find these automagic site builders are too limited, and they produce code that's hard to work with later when you might not have that particular tool.
 

kukyfrope

Senior member
Mar 21, 2005
344
0
0
Don't ever ever use FrontPage to make a webpage. It codes the worst HTML-source coding I've ever had to deal with. Use Dreamweaver if you can or write your own.
 

Markbnj

Elite Member <br>Moderator Emeritus
Moderator
Sep 16, 2005
15,682
14
81
www.markbetz.net
Not an nVU fan here. It's got a lot of functionality, but it is buggy and _really_mungs up your source (they all do to some extent).

I use Visual Studio 2005.
 

igowerf

Diamond Member
Jun 27, 2000
7,697
1
76
Originally posted by: Atheus
Notepad, or a programmer's text editor.

I find these automagic site builders are too limited, and they produce code that's hard to work with later when you might not have that particular tool.

Notepad isn't that good for code since it doesn't support Unix or Mac line endings. I've had tons of annoying problems going between Mac and PC where the Mac seems to replace the \r with another \n. When it gets back to a PC, all the code is double spaced. After repeating this process a few times, the code is unreadable because of all the space. This happens because both the PC and Mac programmers refuse to get a good editor and just go with whatever is default on the computer. Of course, the PC programmer is too lazy to remove all the spaces. In vim, I think the /r characters are all replaced with a special char, which is annoying too.

I would definitely suggest a programmer's text editor.