Calendar on Frontpage... Help?? n00b here

C

Clint

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.
 
S

Stefan B Rusynko

See http://www.javascriptkit.com/script/script2/tengcalendar.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/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


|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.
 
S

sheetrum

I just checked your page with the calendar. I believe you need to follow
the directions on the rest to the page Stefan recommended. (Your calendar
doesn't work!)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top