473,385 Members | 1,588 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Could you make a crappier HTML editor ?


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.................
Jul 21 '05 #1
15 1707
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.
Jul 21 '05 #2
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?
Jul 21 '05 #3
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/

Jul 21 '05 #4
In comp.os.linux.advocacy, Pasta Bolognese
<ja*****@earthlink.net>
wrote
on Wed, 05 May 2004 22:46:28 GMT
<89*****************@newsread1.news.pas.earthlink. net>:

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, ew****@earthlink.net
It's still legal to go .sigless.
Jul 21 '05 #5
In comp.os.linux.advocacy, Pasta Bolognese
<ja*****@earthlink.net>
wrote
on Wed, 05 May 2004 23:27:28 GMT
<AL*****************@newsread1.news.pas.earthlink. net>:
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, ew****@earthlink.net
It's still legal to go .sigless.
Jul 21 '05 #6
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
Jul 21 '05 #7
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.

Jul 21 '05 #8
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....
Jul 21 '05 #9
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
Jul 21 '05 #10
Pasta Bolognese 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.

Right. And your pages probably look like this:

http://www.balloonman.cc/


Very funny, no even close. I currently don't have any up right now but I
used to have a page on icons for Windows, I never got around to putting
back up after @Home died. Even after all this time, I can still find dozens
of links to my old webpage. I never did find a HTML editor that would
render it correctly even though Netscape and IE would show it fine.
If you have to use on of the 'Fancy' editor, your screwed if you have to
fix a low level problem.
Jul 21 '05 #11
Quantum Leaper wrote:
Pasta Bolognese wrote:
Right. And your pages probably look like this:

http://www.balloonman.cc/


I never did find a HTML editor that would
render it correctly even though Netscape and IE would show it fine.
If you have to use on of the 'Fancy' editor, your screwed if you have to
fix a low level problem.


Well -- bottom line is I kind of agree with you.

Let's remember what the magic of HTML or any programming language is: c#,
java, ASP.... The idea is not to sit and draw on the screen and make it
*look* right. The idea is to ABSTRACT something, in CODE, and by using
and manipulating the syntax of the programming language, have it produce a
result -- even if that result is visual.

For me -- I can think in HTML, or javascript, or DHTML ( or c, or c#, or
java ) and *see* what I think it's going to do ( then I look at it and do a
bunch of bug fixes ). HTML is a *programming* language -- much as the c
bigots dispute it -- but only in the hands of a real webmaster -- and by
real I don't mean a 'graphic designer' -- I mean what I just said. Someone
who lets the language do the layout because they understand how to
manipulate the language....

--
W '04 <:> Open
Jul 21 '05 #12
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.


GNU Emacs.

Colin Day

Jul 21 '05 #13
Quantum Leaper wrote:
Pasta Bolognese 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.

Right. And your pages probably look like this:

http://www.balloonman.cc/

Very funny, no even close. I currently don't have any up right now but I
used to have a page on icons for Windows, I never got around to putting
back up after @Home died. Even after all this time, I can still find dozens
of links to my old webpage. I never did find a HTML editor that would
render it correctly even though Netscape and IE would show it fine.
If you have to use on of the 'Fancy' editor, your screwed if you have to
fix a low level problem.


I do all my HTML in Notepad as well; as can be seen at pictures dot
alancode dot net; and admittedly it's not good (I'm a HTML newbie) it's okay
Jul 21 '05 #14
> I do all my HTML in Notepad as well; as can be seen at pictures dot
alancode dot net; and admittedly it's not good (I'm a HTML newbie) it's
okay


There's nothing wrong with starting with Notepad when you're new to HTML.
My first few pages were done entirely in Notepad. Doing a few pages this
way makes you learn how to create HTML code, whereas with an HTML IDE, you
learn how to use the IDE rather than HTML. Later on, an IDE will be a
tremendous timesaver, but you can use your knowledge of HTML to fine tune
the code that the IDE produces.
Jul 21 '05 #15
Schfooge wrote:
There's nothing wrong with starting with Notepad when you're new to HTML.
My first few pages were done entirely in Notepad.


Right on.

Notepad is the only editor.

Except for KWrite

--
ja*****@earthlink.net

Jul 21 '05 #16

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: zwylle | last post by:
Hi all, to avoid a nervous breakdown I finally decided to seek help :D I have a table defined with plain color background and in some cells I show pictures to frame my site. The problem I...
71
by: tomy_baseo | last post by:
I'm new to HTML and want to learn the basics by learning to code by hand (with the assistance of an HTML editor to eliminate repetitive tasks). Can anyone recommend a good, basic HTML editor that's...
14
by: Akseli Mäki | last post by:
Hi, Hopefully this is not too much offtopic. I'm working on a FAQ. I want to make two versions of it, plain text and HTML. I'm looking for a tool that will make a plain text doc out of the...
2
by: Leszek | last post by:
Hello, Has anybody heard about an HTML editor available as an ASP.NET control or so? I need one for my Content Management System. I would appreciate any help: links to existing components,...
15
by: Pasta Bolognese | last post by:
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.................
19
by: MajorSetback | last post by:
I am starting up a home business and will be setting up a web site to market the software that I will be developing in C++. I was wondering if I should buy something like Dreamweaver or Frontpage...
5
by: Joe | last post by:
We're looking for a fully functional RTF/HTML editor for our WinForms application. We need a control with the following features: 1. Supports image 2. Supports hyperlinks (auto detects) and...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.