Lost Password?


Go Back   CodeCall Programming Forum > Web Development Forum > HTML Programming

HTML Programming Forum discussion covering HTML, XHTML, DHTML and all flavors of HTML. Hypertext Markup Language is used to create websites.

Closed Thread
 
LinkBack Thread Tools Search this Thread Display Modes
  #151 (permalink)  
Old 06-15-2008, 08:08 AM
G_Morgan G_Morgan is offline
Guru
 
Join Date: Oct 2007
Age: 24
Posts: 507
Last Blog:
Just over the next hil...
Rep Power: 10
G_Morgan has a spectacular aura aboutG_Morgan has a spectacular aura aboutG_Morgan has a spectacular aura about
Default Re: Do you write html in notepad?

Quote:
Originally Posted by TcM View Post
Text editors are the way to go, with them you can do the real thing!
It's control that's the big issue for me. I always write my GUI's with a pattern of

GUI (implementing a GUI interface) <-> ControllerClass <-> Backend

This way the raw interactions are in the controller class and can be automatically tested by mocking the GUI interface. The GUI just passes out events to the controller and renders whatever the controller tells it to. It's hard to set this up with code generating visual editors.

A similar principle applies to web development though the specifics differ.

When you use a code generator you are always forced into the methodology of the person who wrote the code generator and it is very rarely what you want.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #152 (permalink)  
Old 06-15-2008, 12:49 PM
Xav's Avatar   
Xav Xav is offline
Code Warrior
 
Join Date: Mar 2008
Location: On God's Planet
Posts: 9,897
Last Blog:
Web slideshow in JavaS...
Rep Power: 78
Xav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud of
Send a message via MSN to Xav
Default Re: Do you write html in notepad?

You can still use VWD, but just with code view - it is excellent for writing code, ignoring the GUI completely.
__________________


Mr. Xav | Website | Forums | Blog
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #153 (permalink)  
Old 06-15-2008, 12:55 PM
G_Morgan G_Morgan is offline
Guru
 
Join Date: Oct 2007
Age: 24
Posts: 507
Last Blog:
Just over the next hil...
Rep Power: 10
G_Morgan has a spectacular aura aboutG_Morgan has a spectacular aura aboutG_Morgan has a spectacular aura about
Default Re: Do you write html in notepad?

Having access to the output code doesn't really help in most cases. It still enforces a structure on you that precludes certain forms of black box testing.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #154 (permalink)  
Old 06-15-2008, 01:01 PM
Xav's Avatar   
Xav Xav is offline
Code Warrior
 
Join Date: Mar 2008
Location: On God's Planet
Posts: 9,897
Last Blog:
Web slideshow in JavaS...
Rep Power: 78
Xav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud of
Send a message via MSN to Xav
Default Re: Do you write html in notepad?

No, not the output code - I meant the Code View in VWD.
__________________


Mr. Xav | Website | Forums | Blog
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #155 (permalink)  
Old 06-17-2008, 04:47 PM
scsefrmr scsefrmr is offline
Learning Programmer
 
Join Date: May 2008
Posts: 39
Rep Power: 3
scsefrmr is on a distinguished road
Send a message via MSN to scsefrmr
Default Re: Do you write html in notepad?

Xav is right, VWD is excellent for typing the raw code in. It has that VB feel where it gives you a drop down list for alternative commands for the text you have typed etc.
I was impressed by that, made it a lot easier.
Plus theres less chance for user error, as it gives you the commands available for the position your cursor is in the code (i.e. it will only offer <TD> and </TR> if you are typing after a <TR> tag in HTML).
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!

Sponsored Links
  #156 (permalink)  
Old 06-18-2008, 04:16 PM
Xav's Avatar   
Xav Xav is offline
Code Warrior
 
Join Date: Mar 2008
Location: On God's Planet
Posts: 9,897
Last Blog:
Web slideshow in JavaS...
Rep Power: 78
Xav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud of
Send a message via MSN to Xav
Default Re: Do you write html in notepad?

I'm always right.
__________________


Mr. Xav | Website | Forums | Blog
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #157 (permalink)  
Old 06-21-2008, 06:53 AM
G_Morgan G_Morgan is offline
Guru
 
Join Date: Oct 2007
Age: 24
Posts: 507
Last Blog:
Just over the next hil...
Rep Power: 10
G_Morgan has a spectacular aura aboutG_Morgan has a spectacular aura aboutG_Morgan has a spectacular aura about
Default Re: Do you write html in notepad?

Quote:
Originally Posted by scsefrmr View Post
Xav is right, VWD is excellent for typing the raw code in. It has that VB feel where it gives you a drop down list for alternative commands for the text you have typed etc.
I was impressed by that, made it a lot easier.
Plus theres less chance for user error, as it gives you the commands available for the position your cursor is in the code (i.e. it will only offer <TD> and </TR> if you are typing after a <TR> tag in HTML).
Just about every IDE on the planet has code completion. Well there are some text editors with code completion as well. Emacs certainly has it.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #158 (permalink)  
Old 06-21-2008, 08:39 AM
TcM's Avatar   
TcM TcM is offline
Code Warrior
 
Join Date: Aug 2006
Location: In a technologic world :p
Posts: 8,332
Rep Power: 68
TcM is a glorious beacon of lightTcM is a glorious beacon of lightTcM is a glorious beacon of lightTcM is a glorious beacon of lightTcM is a glorious beacon of light
Default Re: Do you write html in notepad?

VWD is a text editor or something like dreamweaver?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #159 (permalink)  
Old 06-21-2008, 08:42 AM
chili5's Avatar   
chili5 chili5 is offline
Code Warrior
 
Join Date: Mar 2008
Age: 15
Posts: 3,634
Rep Power: 32
chili5 is a name known to allchili5 is a name known to allchili5 is a name known to allchili5 is a name known to allchili5 is a name known to allchili5 is a name known to all
Default Re: Do you write html in notepad?

It's kind of like Dream weaver but looks more like Visual Studio.
__________________
Emo Philips - "My computer beat me at checkers, but I sure beat it at kickboxing."
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #160 (permalink)  
Old 06-21-2008, 03:25 PM
Xav's Avatar   
Xav Xav is offline
Code Warrior
 
Join Date: Mar 2008
Location: On God's Planet
Posts: 9,897
Last Blog:
Web slideshow in JavaS...
Rep Power: 78
Xav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud ofXav has much to be proud of
Send a message via MSN to Xav
Default Re: Do you write html in notepad?

It can be whatever you want it to be - download it at Visual Web Developer 2008 Express Edition.

Like Dreamweaver, it has a WYSIWIG (and an excellent one at that, which allows you to apply styles to elements with a properties window, add controls, the works). However, it's real strength is in code view. As long as the file type of the file is recognised, you can edit the code easy peasy.

For example, you type a <table> tag. Once you type <table , a window pops up with all the attributes you can use, with code completion. After the <table> tag, simply type the < character, and it displays a list with the different tags (eg <tr>) that you can use in this circumstance. I think the main difference is that it sort of 'understands' the code more than a text editor, if you know what I mean. It generally makes the coding a lot more enjoyable and easy.
__________________


Mr. Xav | Website | Forums | Blog
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!

Sponsored Links
Closed Thread



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
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
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
printing out into notepad from the html using perl lichy Perl 8 12-14-2007 02:06 PM
About HTML Onur Tutorials 0 08-28-2007 07:13 PM
HTML Introduction clookid Tutorials 5 01-08-2007 10:43 PM
What is HTML, DHTML and XHTML? Lop HTML Programming 5 08-09-2006 12:00 PM
How can I write HTML? dirkfirst HTML Programming 6 07-04-2006 03:10 PM


All times are GMT -5. The time now is 07:28 AM.

Contest Stats

WingedPanther ........ 2753.6
Xav ........ 2704
Brandon W ........ 1702.32
John ........ 1207.73
marwex89 ........ 1175.24
morefood2001 ........ 966.05
dcs ........ 655.75
Steve.L ........ 475.59
orjan ........ 418.58
Aereshaa ........ 383.54

Contest Rules

CodeCall Goal

Goal: 100,000 Posts
Complete: 100%


Complete - Celebrate!

Ads