Nicole
Posts: 586
|
| Posted: 09/27/2004, 6:30 AM |
|
Kevin,
Put a button to a page and create client side onClick event for it. Use JavaScript code like provided below in the event. Remember that you need to use real form and textarea names and of course you can use another date format:
d = new Date();
document.NewRecord1.TextArea1.value = document.NewRecord1.TextArea1.value +
d.getDate() + "/" + d.getMonth() + "/" + d.getYear() + " - " + d.getHours() + ":"+ d.getMinutes() + ":"+ d.getSeconds();
_________________
Regards,
Nicole |