Computer Forums

Go Back   Computer Forums > Internet > Website Development

Website Development HTML, traffic, hosting, and more... this is the forum for every webmaster.

Register Now for FREE!
Computer Forums

Username: Password: Confirm Password: E-Mail: Confirm E-Mail:
Agree to forum rules 


View Poll Results: How do you prefer building websites?
Use some sort of web design program? 6 60.00%
Or is coding the whole thing from scratch better? 4 40.00%
Voters: 10. You may not vote on this poll

Closed Thread
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 12-08-2007, 08:17 AM
mrvistahater's Avatar
New Member
 
Join Date: 11 Nov 2007
Location: I live in Tulsa,OK
Posts: 19
mrvistahater is on a distinguished road
Question What to use?

If any of you guys or girls were to make a website, and made it with some sort of program like dreamweaver for example. What do you guys thinks about using a program to build a site? Do most of use code your own sites or do most of you use a web design program to help with the construction of you site?
__________________
I am a student at Oklahoma State University persuing a degree in Information Assurance and Forensics, As of now I would say that my knowledge level is a little below par, but am very anxious to learn as much as I can about all aspects of computers and networking.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Sponsored Links
  #2 (permalink)  
Old 12-08-2007, 10:01 AM
Ash's Avatar
Ash Ash is online now
CF owner
 
Join Date: 27 Jul 2005
Location: Devon, UK
Posts: 4,130
Ash has a reputation beyond reputeAsh has a reputation beyond reputeAsh has a reputation beyond reputeAsh has a reputation beyond reputeAsh has a reputation beyond reputeAsh has a reputation beyond reputeAsh has a reputation beyond reputeAsh has a reputation beyond reputeAsh has a reputation beyond reputeAsh has a reputation beyond reputeAsh has a reputation beyond repute
Default

I just use a web design program that lets me switch to source view quickly

Web design apps are great for doing a website [particularly things like tables] quickly and visually, but sometimes it's just quicker to do something in the source code.
__________________
Thanks,
Ash
CF Founder

Great Webhosting. Shared starting at $2 per month. VPSes starting at $6 per month.
www.Centicero.com

Want to get in touch? Send me a PM | Do you want to continue receiving free help? Or do you want this site to close? Become a premium member.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #3 (permalink)  
Old 12-08-2007, 05:15 PM
Thaylok's Avatar
Life is Weird, Embrace IT
 
Join Date: 06 Jun 2007
Location: Dallas Texas, USA
Posts: 526
Thaylok has a reputation beyond reputeThaylok has a reputation beyond reputeThaylok has a reputation beyond reputeThaylok has a reputation beyond reputeThaylok has a reputation beyond reputeThaylok has a reputation beyond reputeThaylok has a reputation beyond reputeThaylok has a reputation beyond reputeThaylok has a reputation beyond reputeThaylok has a reputation beyond reputeThaylok has a reputation beyond repute
Default

Nvu works in a similar manner to Dreamweaver. It is an IDE Integrated Development Environment, however NvU is FREE. Nvu includes a text editor, a WYSIWYG editor, upload capability and a few other features. Nvu is available for Windows as well.

For a while, Mandriva came with an IDE I liked, Quanta (plus).

Quanta Plus Home
The current version shows to be 3.5.8

Additional resources: The Javascript Source has a lot of readily available scripts. Some don't work in Firefox/Mozilla/Netscape (are set for Internet exploiter), but most of those are marked. JavaScript Source: Free JavaScripts, Tutorials, Example Code, Reference, Resources, And Help

As ash says, You can have cleaner code if you use a text editor, and save/reload your browser window. That works Nicely!!

Edit number 2...

IDE's are nice for forcing a standard template (consistency) across a whole site. But if you know the code, I like to go at it by hand.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #4 (permalink)  
Old 12-09-2007, 07:17 AM
blueparukia's Avatar
Nuisance Member
 
Join Date: 13 Apr 2007
Location: Australia
Posts: 455
blueparukia has a spectacular aura aboutblueparukia has a spectacular aura about
Default

I use Notepad++. I am a stickler for standards, so don't use an Visual editor - just manually code

BP
__________________
I am your friendly CompuForums moderator . Send me a Private Message if you have an issue with this site or a specific member. I am best at Web Development, though I will try to answer all your questions to the best of my ability.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #5 (permalink)  
Old 12-25-2007, 01:39 AM
narutohendrix's Avatar
Kilobyte
 
Join Date: 06 Apr 2007
Location: Ohio
Posts: 99
narutohendrix is on a distinguished road
Default

I'm currently doing some freelance work I got from school. I'm using Dreamweaver CS3 to update the site and find it really easy. I know code, learned before I learned Dreamweaver, and often use code within Dreamweaver. That said, it all comes down to preference. I find coding to be a tad bit faster for inserting images and links, but at the same time, if you make a mistake, you might spend hours trying to find it. Dreamweaver and other such programs have a wealth of features, like a built in FTP client, easy website organization, easy CSS creation, the ability to see your page as you make it, and many more. But with these wealth of features, certain things, like inserting images within the graphical interface, takes much longer than it would take if you were to code it.

That said, I use Dreamweaver CS3 in the Split view for work. I often go up to the code window for simple tasks whislt I use the graphical interface for the creation of tables, rollovers, etc.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #6 (permalink)  
Old 12-25-2007, 04:09 AM
blueparukia's Avatar
Nuisance Member
 
Join Date: 13 Apr 2007
Location: Australia
Posts: 455
blueparukia has a spectacular aura aboutblueparukia has a spectacular aura about
Default

Quote:
I use the graphical interface for the creation of tables, rollovers, etc
For tables that is OK, but for rollovers? That is what CSS is for, not crappy 1997 javascript. Use something like

Code:
 <a href="link" class="something">Link Text</a>
Coupled with CSS:

Code:
.something
{
height:??px;
width:??px;
background:#000 url(image/url.png) no-repeat;
display:block;
}

.something:hover
{
background:#000 url(image/hover_url.png) no-repeat;
}
Makes a very effective rollover, that saves seconds of load time for users, as well as reduces time spent handshaking.


BP
__________________
I am your friendly CompuForums moderator . Send me a Private Message if you have an issue with this site or a specific member. I am best at Web Development, though I will try to answer all your questions to the best of my ability.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #7 (permalink)  
Old 01-08-2008, 05:40 AM
mrvistahater's Avatar
New Member
 
Join Date: 11 Nov 2007
Location: I live in Tulsa,OK
Posts: 19
mrvistahater is on a distinguished road
Default

I am not the best at coding myself, so I need programs like dreamweaver for some things.
__________________
I am a student at Oklahoma State University persuing a degree in Information Assurance and Forensics, As of now I would say that my knowledge level is a little below par, but am very anxious to learn as much as I can about all aspects of computers and networking.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #8 (permalink)  
Old 01-08-2008, 04:51 PM
Kilobyte
 
Join Date: 03 Dec 2007
Posts: 83
jennifer.goldson is on a distinguished road
Default

I am also not very good at coding, but I am trying to learn. I think that it is the better way to go if you are skilled at it.
__________________
IT Certification Training
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #9 (permalink)  
Old 01-13-2008, 10:08 PM
mud_afuka's Avatar
New Member
 
Join Date: 12 Jan 2008
Location: None Ya.
Posts: 24
mud_afuka is on a distinguished road
Default Coding

Hacking a blank page into an advanced site is both challenging and rewarding.

What reward do owe ourselves by using a piece of software (dreamweaver, eg.) someone else has designed? None! Squat! Zero! Zip! Zilch!

On the other hand, open up NotePad++ and hack until your heart's content. Then when you open up that first .html page, feel your heart skip a beat as a smile creeps across your face with joy and amazement. Pride! Coding is joyful!!! Coding is cool!!!

Yo!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 10:50 AM.



Powered by: vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Limited.
Content © Copyright 2005-2008 CompuForums. All Rights Reserved. Some content © Copyright of the respective owners.
Cheap Gas - Loans - United Specialties - Loans

Content Relevant URLs by vBSEO 3.2.0 RC5