473,766 Members | 2,159 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 1744
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.a dvocacy, Pasta Bolognese
<ja*****@earthl ink.net>
wrote
on Wed, 05 May 2004 22:46:28 GMT
<89************ *****@newsread1 .news.pas.earth link.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****@earthlin k.net
It's still legal to go .sigless.
Jul 21 '05 #5
In comp.os.linux.a dvocacy, Pasta Bolognese
<ja*****@earthl ink.net>
wrote
on Wed, 05 May 2004 23:27:28 GMT
<AL************ *****@newsread1 .news.pas.earth link.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....gl itter...... :-) 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****@earthlin k.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....w ell, 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

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

Similar topics

2
15631
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 have occurs for one special cell. The background of this cell is as you can see an image. A text should be displayed on this image. I don't want the text to be bigger than the picture.
71
6504
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 a step beyond Notepad (not a WYSIWYG tool). Thanks.
14
6904
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 HTML doc. The HTML version doesn't have anything fancy, just internal links. So the tool must be able to delete internal links and anchors from the HTML version, but leave external links in simplified form. That is, the HTML version would say <a...
2
1947
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, programs, code snippets, or any other resources regarding building online HTML editors using ASP.NET. Thanks, Leszek Taratuta
15
391
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
780
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 or try to develop the web pages directly using HTML and a text editor. I have not had experience building web pages but have had several years experience in programming in C and C++ and in using LaTeX for document preparation. Any advice...
5
16845
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 allows use to create "custom" hyperlinks. 3. Can have their menus and toolbars merged with our application or is fully programmically controlled.
0
9571
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9404
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10168
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10009
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9959
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9838
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8835
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
2
3532
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2806
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.