This is a multi-part message in MIME format.
------=_NextPart_000_0015_01C02144.E65692E0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
How does the id tag differ from the name tag??
----- Original Message -----
From: ivan.posselt@n...
To: HTML Code Clinic
Sent: Monday, September 18, 2000 6:10 AM
Subject: [html_code_clinic] RE: What does the "id" mean in a form tag?
The id =3Dform1 is a unique ID you use in dhtml (DOM) like e.g.
if (document.form1.radio(0)=3D=3Dchecked)
..
in this way you can access the different objects and properties,
turning
HTML into objects (DOM) - so to speak !
Ivan
> -----Original Message-----
> From: Ben [SMTP:formula1@b...]
> Sent: Monday, September 18, 2000 20:15
> To: HTML Code Clinic
> Subject: [html_code_clinic] What does the "id" mean in a form tag?
>
> I'm pretty conversant in both HTML and ASP now (developed a couple
of
> actual running ecommerce sites with 40,000 products in db as well as
other
> projects) but I've recently run into something that I'm not sure
what it
> does and I haven't been able to find documentation on it. Here is a
> sample of the code:
>
> <FORM METHOD=3D"post" ACTION=3D"sample.asp?from=3Dsubmit" id=3Dform1
> name=3D"firstpage">
>
> I know everything in this tag except for the id=3Dform1...I've seen
it used
> in vbscript but don't know what it is used for. Can someone clue me
in on
> this?
>
> thanks
>
> Ben