Capturing Todays Date

C

carmen

Why not set up a variable that gets the date from the
server (of course, this is an asp page not an html page):
DateNow = <%=date%>

Then enter it into whatever form field you have:
<input name="Date" type="text" id="date" value=DateNow>
 
Top