Java and CGI

I need someones help with this!!! I have a java calendar on a page that i made for pulling up my hours that i've worked, the only problem is this.....for my cgi scrpt to function correctly the input box for the date needs to be labeled <input name="txtenddte"........etc>

and for my calendar to function correctly the input box needs to be labeled <input [b]id[/b]="txtenddte">

i tried looking into the cgi script and i see nothing that will help me...i tried looking into the javascript and see way too many places to change the document.getElementById to document.getElementByName...help please i can post the codes for the calendar if needed

[728 byte] By [brockba] at [2007-11-27 5:26:50]
# 1

a component can have both a name and an id attribute:

<input type="text" id="mydate" name="mydate"/>

There's nothing wrong with that.

... but perhaps I am not understanding the complexity of your dilemma.

Navy_Codera at 2007-7-12 14:47:58 > top of Java-index,Java Essentials,New To Java...
# 2
How exactly does Java even enter into this?
paulcwa at 2007-7-12 14:47:59 > top of Java-index,Java Essentials,New To Java...
# 3
> How exactly does Java even enter into this?System.out.println("JavaScript".substring(0,4));
floundera at 2007-7-12 14:47:59 > top of Java-index,Java Essentials,New To Java...
# 4

> a component can have both a name and an id

> attribute:

> > <input type="text" id="mydate" name="mydate"/>

>

>

> There's nothing wrong with that.

>

> ... but perhaps I am not understanding the complexity

> of your dilemma.

thank you i tried this before and it didnt work but for some reason i got it working! so thank you very much!!!

brockba at 2007-7-12 14:47:59 > top of Java-index,Java Essentials,New To Java...