Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Inserting time/date stamp into Access from ASP

Status
Not open for further replies.

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
 
[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=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot;>
</head>

<body bgcolor=&quot;#FFFFFF&quot; text=&quot;#000000&quot;>
<form name=&quot;form1&quot; method=&quot;post&quot; action=&quot;&quot;>
Hidden Date:
<input type=&quot;hidden&quot; name=&quot;textfield&quot; value=&quot;<%=now()%>&quot;><%=now()%>
</form>
</body>
</html>
****************************************************



T ® Ñ ¥
To keep a lamp burning we have to keep puting oil in it.
Progress2.gif

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top