PC Review


Reply
Thread Tools Rate Thread

Could you make a crappier HTML editor ?

 
 
Pasta Bolognese
Guest
Posts: n/a
 
      5th May 2004

Open VS.2003.

Click on a control on an aspx page in the HTML view.

Does it tell me the pixel position on the page?

Nooooooooooo.................
 
Reply With Quote
 
 
 
 
Quantum Leaper
Guest
Posts: n/a
 
      6th May 2004
Pasta Bolognese wrote:
> Open VS.2003.
>
> Click on a control on an aspx page in the HTML view.
>
> Does it tell me the pixel position on the page?
>
> Nooooooooooo.................


What do you consider a 'GOOD' HTML editor? I do all mine is Notepad.


 
Reply With Quote
 
Quizzical
Guest
Posts: n/a
 
      6th May 2004
Quantum Leaper wrote:
> Pasta Bolognese wrote:
>> Open VS.2003.
>>
>> Click on a control on an aspx page in the HTML view.
>>
>> Does it tell me the pixel position on the page?
>>
>> Nooooooooooo.................

>
> What do you consider a 'GOOD' HTML editor? I do all mine is Notepad.


You mean Knote, surely?

What about Quanta? Any good for making mass changes across many html files,
/a la/ DW templates?


 
Reply With Quote
 
Pasta Bolognese
Guest
Posts: n/a
 
      6th May 2004
Quantum Leaper wrote:

> Pasta Bolognese wrote:
>
>>Open VS.2003.
>>
>>Click on a control on an aspx page in the HTML view.
>>
>>Does it tell me the pixel position on the page?
>>
>>Nooooooooooo.................

>
>
> What do you consider a 'GOOD' HTML editor? I do all mine is Notepad.
>
>



Right. And your pages probably look like this:

http://www.balloonman.cc/

 
Reply With Quote
 
The Ghost In The Machine
Guest
Posts: n/a
 
      6th May 2004
In comp.os.linux.advocacy, Pasta Bolognese
<(E-Mail Removed)>
wrote
on Wed, 05 May 2004 22:46:28 GMT
<89emc.8532$(E-Mail Removed)>:
>
> Open VS.2003.
>
> Click on a control on an aspx page in the HTML view.
>
> Does it tell me the pixel position on the page?
>
> Nooooooooooo.................


Has it occurred to you that "pixel position" within an HTML
page is a useless concept? Especially since HTML browsers
can be resized, making a paragraph variable height?

That said, it would be nice to see an editor which knew
how to edit at least two things at once: the HTML page
proper, and a style sheet or set of style sheets associated
therewith, and update the HTML as the style sheets are
tweaked. (Bluefish can edit multiple pages but cannot
render, although it can punt to Netscape. OO can read but
AFAICT cannot write style sheets. Amaya is close but has
some problems, and cannot render frames; I don't think it
can auto-update its displayed HTML when a style changes,
either -- even when it's changing the style. Then again,
I've not played with it in a while. Also, Amaya doesn't
do things at the style/color/font level; one has to
edit the tags directly -- which is fine if one happens
to know HTML, but I suspect not everyone does.)

Repeat after me:

HTML is not PDF.
HTML is not PDF.
HTML is not PDF.
....

:-)

--
#191, (E-Mail Removed)
It's still legal to go .sigless.
 
Reply With Quote
 
The Ghost In The Machine
Guest
Posts: n/a
 
      6th May 2004
In comp.os.linux.advocacy, Pasta Bolognese
<(E-Mail Removed)>
wrote
on Wed, 05 May 2004 23:27:28 GMT
<ALemc.8562$(E-Mail Removed)>:
> Quantum Leaper wrote:
>
>> Pasta Bolognese wrote:
>>
>>>Open VS.2003.
>>>
>>>Click on a control on an aspx page in the HTML view.
>>>
>>>Does it tell me the pixel position on the page?
>>>
>>>Nooooooooooo.................

>>
>>
>> What do you consider a 'GOOD' HTML editor? I do all mine is Notepad.
>>
>>

>
>
> Right. And your pages probably look like this:
>
> http://www.balloonman.cc/



Woooooooo....glitter...... :-) Not to mention multicolored text
and a rotating image separator.

Yeah, takes me right back to the 80's or early 90's. Where's Minsky
when you really *need* him? :-)

I'll give him credit for not using the BLINK tag and annoyingly
animated GIFS, though. And apparently he's not yet discovered
the joys of *cough* balloon text. (Then again, he's great with
the balloons. I just can't say the same for his HTML.)

--
#191, (E-Mail Removed)
It's still legal to go .sigless.
 
Reply With Quote
 
Canneloni
Guest
Posts: n/a
 
      6th May 2004
The Ghost In The Machine wrote:

> Has it occurred to you that "pixel position" within an HTML
> page is a useless concept?


But I'm thinking about absolute positioning.


> That said, it would be nice to see an editor which knew
> how to edit at least two things at once: the HTML page
> proper, and a style sheet or set of style sheets associated
> therewith, and update the HTML as the style sheets are
> tweaked.


Ok, let me tell you about my day today.

Web Form for an e-commerce site. Working on validation for an ASP:Label for
a credit card number. There were 3 levels of validation. A required field
validation control to make sure they entered somthing. A regular
expression validation control to make sure that they entered a credit card
number in the rigth format ( each type, VISA, MC, etc has a certain
sequence, number of digits and leading numbers -- all VISAs start with 4,
e.g.) and then a label control that was written to by a codebehind method
with the standard algorithm to make sure that the whole cc number is valid.

In any instance, either none were visible or one was visible, and I wanted
them to show up in the same place on the right of the text input field.

ASP:Validation controls don't have a style attribute. You can put one in,
manually in the HTML code, but the problem is that if you manipulate it in
the editor it erases it! ( It also always removes formatting as far as the
code layout of the HTML in the aspx page -- so if you format the code for
easy reading, by putting carriage returns after attributes, it resets those
and strings it out 200, 300 characters to the right. And it also randomly
deletes event handlers from the Init method...which impacted me because I
use the codebehind to change the regular expressions when the user selects
a different credit card type...).

Anyway, after getting shot down using STYLE I decided to use the CssStyle
attribute which is an /official/ property of an ASP control. So I added a
STYLE block to the top and made some style elements for the controls. Each
control and the label were 70px wide. So I made one element have LEFT:
-70px and the other -140px. This way they would all align in the same
place.

Then, of course, in the editor, they all align on top of one another, so
selecting the ones on the bottom to make changes was well nigh
impossible....well, you can see where the time goes....



--
W '04 <:> Open
 
Reply With Quote
 
John
Guest
Posts: n/a
 
      7th May 2004
Quantum Leaper wrote:

> Pasta Bolognese wrote:
>> Open VS.2003.
>>
>> Click on a control on an aspx page in the HTML view.
>>
>> Does it tell me the pixel position on the page?
>>
>> Nooooooooooo.................

>
> What do you consider a 'GOOD' HTML editor? I do all mine is Notepad.


Ugh!!! For God's sake, at least use EDIT, which offers automatic line
indenting. If you must use Windows, try this:

http://www.chami.com/html-kit/

You'll find it much more suited to your purpose.

 
Reply With Quote
 
Quantum Leaper
Guest
Posts: n/a
 
      7th May 2004
Quizzical wrote:
> Quantum Leaper wrote:
>> Pasta Bolognese wrote:
>>> Open VS.2003.
>>>
>>> Click on a control on an aspx page in the HTML view.
>>>
>>> Does it tell me the pixel position on the page?
>>>
>>> Nooooooooooo.................

>>
>> What do you consider a 'GOOD' HTML editor? I do all mine is
>> Notepad.

>
> You mean Knote, surely?
>
> What about Quanta? Any good for making mass changes across many html
> files, /a la/ DW templates?


Nah.... to fancy.... Notepad.exe makes a good HTML editor if you know what
your doing....


 
Reply With Quote
 
John Bailo
Guest
Posts: n/a
 
      7th May 2004
Quantum Leaper wrote:

> Quizzical wrote:
>> Quantum Leaper wrote:
>>> Pasta Bolognese wrote:
>>>> Open VS.2003.
>>>>
>>>> Click on a control on an aspx page in the HTML view.
>>>>
>>>> Does it tell me the pixel position on the page?
>>>>
>>>> Nooooooooooo.................
>>>
>>> What do you consider a 'GOOD' HTML editor? I do all mine is
>>> Notepad.

>>
>> You mean Knote, surely?
>>
>> What about Quanta? Any good for making mass changes across many html
>> files, /a la/ DW templates?

>
> Nah.... to fancy.... Notepad.exe makes a good HTML editor if you know
> what your doing....


how about for mono?

vi?

--
W '04 <:> Open
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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 Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
I actually found something that is crappier than vista! carl feredeck Windows Vista General Discussion 31 28th Jul 2007 02:31 AM
How do I go about make Frontpage the default html editor? =?Utf-8?B?Q0xT?= Microsoft Frontpage 3 8th Sep 2006 08:23 PM
Alleycode HTML Editor - excellent if you know HTML Laurie Flack Freeware 6 24th Jan 2006 10:25 PM
Html editor or viewer that can handle html framesets Andy Freeware 1 31st Oct 2004 05:48 PM
how do I force a new mailitem to use the HTML editor but not the WORD editor? Scott Emick Microsoft Outlook VBA Programming 1 20th Oct 2004 06:06 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:07 AM.