Date & Time

February 23, 2005 by Jeremy Conn

Actually, that is much easier than you'd think.
To accomplish this, simply place a hidden (or visable if you'd like) field into your form... then insert the ASP variable for showing the date and time, which is considered "Now".

<form>
<input name="EditDate" type="hidden" value="<%=Now%>">
</form>

The result is in this format:  2/23/2005 11:18:03 AM
Hope this helps...