Hi Debbie,
If you have MS Access to create the database you can define a field that is
automatically set to the current date and time. If not, then you'll need to
use a text field, normally hidden, that has been set to the current date.
To set the field use JavaScript like so:
<form method="POST" action="--WEBBOT-SELF--" name="FrontPage_Form1">
<!--webbot bot="SaveResults"
U-File="
http://www.fpplus.com/samples/_private/form_results.csv"
S-Format="TEXT/CSV" S-Label-Fields="TRUE" -->
<p><input type="hidden" name="Date" size="20" ><input type="submit"
value="Submit" name="B1"><input type="reset" value="Reset" name="B2"></p>
</form>
<script>
var oDate = new Date();
document.FrontPage_Form1.Date.value = oDate.toDateString();
</script>