See
http://www.javascriptkit.com/script/...calendar.shtml
--
_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPa...3/Default.aspx
_____________________________________________
"Clint" <(E-Mail Removed)> wrote in message news:21A962D5-1504-4780-ACFA-(E-Mail Removed)...
|I am creating a website in which I have a form that was automated by the
| people who host my website(i filled out a form and it e-mails me the results
| in a message to set up appointments) Well, My boss now wants a calendar to
| put on the side of the date field, a calendar, and to make the other stuff
| look a little more professional.
|
| The website is
http://www.precisionautoac.com/contact_us.html and I need to
| be able to still have the results e-mailed to me. The code I have is
| <form action="http://precisionautoac.com/v-cgi/forms.cgi"
| enctype="application/x-www-form-urlencoded"
| method="post">
| <table> <tr valign="top">
| <th align="right">
| Name:
| </th>
| <td>
| <textarea name="Name" rows="6" cols="30">First, Last</textarea>
| </td>
| </tr>
| <tr valign="top">
| <th align="right">
| Service:
| </th>
| <td>
| <textarea name="Service" rows="6" cols="30">Oil Change</textarea>
| </td>
| </tr>
| <tr valign="top">
| <th align="right">
| Date:
| </th>
| <td>
| <textarea name="Date" rows="6" cols="30">010106</textarea>
| </td>
| </tr>
| <tr valign="top">
| <th align="right">
| Time:
| </th>
| <td>
| <textarea name="Time" rows="6" cols="30">0830</textarea>
| </td>
| </tr>
| <tr valign="top">
| <th align="right">
| Comments:
| </th>
| <td>
| <textarea name="Comments" rows="6" cols="30">please include e-mail and
| phone number for confirmation or questions</textarea>
| </td>
| </tr>
| <tr>
| <th></th>
| <td>
| <input type="submit" name="Submit" value="Submit" />
| </td>
| </tr>
| </table><input type="hidden" name="_vDeckformid" value="121" />
| </form>
|
| Any help would be GREATLY appreciated.