Mar 31, 2003 #1 Jimuniguy Technical User Mar 6, 2002 363 GB Hi, I need to insert a time/date stamp into Mircosoft Access as part of a form of choices made by the user. How is this done? I am using 2000 Access and Dreamwever MX. Thanks James
Hi, I need to insert a time/date stamp into Mircosoft Access as part of a form of choices made by the user. How is this done? I am using 2000 Access and Dreamwever MX. Thanks James
Mar 31, 2003 #2 TonyU Technical User Feb 14, 2001 1,317 US [tt]First of all, you're in the wrong forum (I'm sure .net gurus could've helped...) have a hidden field insert into the date field in your database, like: **************************************************** <html> <head> <title>Hidden Field Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> <form name="form1" method="post" action=""> Hidden Date: <input type="hidden" name="textfield" value="<%=now()%>"><%=now()%> </form> </body> </html> **************************************************** T ® Ñ ¥ To keep a lamp burning we have to keep puting oil in it. Upvote 0 Downvote
[tt]First of all, you're in the wrong forum (I'm sure .net gurus could've helped...) have a hidden field insert into the date field in your database, like: **************************************************** <html> <head> <title>Hidden Field Sample</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> <form name="form1" method="post" action=""> Hidden Date: <input type="hidden" name="textfield" value="<%=now()%>"><%=now()%> </form> </body> </html> **************************************************** T ® Ñ ¥ To keep a lamp burning we have to keep puting oil in it.