hiker1974
08-20-2003, 04:27 PM
Hello:
Here is a snippet of code from my jsp form page:
Begin: <input type="text" name="bgndate" size="9" maxlength="9" value="">
<A HREF="javascript:doNothing()" onClick="setDateField(document.report.bgndate); top.newWin = window.open('/MyPOC/calendar.html', 'cal', 'dependent=yes, width=210, height=230, left=650, top=300, titlebar=no')">
<IMG SRC="/MyPOC/assets/calendar.gif" BORDER=0
title="Select Date" width="16" height="16">
</A>
After submitting this form, I want to parse the date value of bgndate. I have tried request.getParameter("bgndate"), but it does not give me a value. I've researched this and can't find the clue that I need.
Thanks in advance,
Charlotte
Here is a snippet of code from my jsp form page:
Begin: <input type="text" name="bgndate" size="9" maxlength="9" value="">
<A HREF="javascript:doNothing()" onClick="setDateField(document.report.bgndate); top.newWin = window.open('/MyPOC/calendar.html', 'cal', 'dependent=yes, width=210, height=230, left=650, top=300, titlebar=no')">
<IMG SRC="/MyPOC/assets/calendar.gif" BORDER=0
title="Select Date" width="16" height="16">
</A>
After submitting this form, I want to parse the date value of bgndate. I have tried request.getParameter("bgndate"), but it does not give me a value. I've researched this and can't find the clue that I need.
Thanks in advance,
Charlotte