Date in Text Field

P

PinkBishop

I would like the current date to appear in a text field
giving the site visitor the option to change the date
prior to submitting form.

Anybody know how to do this?
 
D

David Berry

If it's an ASP page <%=Date()%> It would look like this:

<input type="text" name="Date" size="20" value="<%=Date()%>">
 
P

PinkBishop

Top