Date on Confirmation field???

S

sheetrum

How do I get the date to show up on a confirmation page? I have already
tried "Date" to no avail. I have another Form Field that shows OK on the
confirmation page, I also need to have the date included that the form was
submitted. I am sure that somewhere in the gray line of code is the answer.
Do I need to use a certain format for the date on the Saved Fields tab?

I have included the code below:

<!--webbot bot="SaveResults" U-File="_private/tickets.csv"
S-Format="TEXT/CSV" S-Label-Fields="TRUE" B-Reverse-Chronology="FALSE"
S-Email-Format="HTML/PRE" S-Email-Address="(e-mail address removed)"
B-Email-Label-Fields="TRUE" B-Email-ReplyTo-From-Field="TRUE"
S-Email-ReplyTo="Email" B-Email-Subject-From-Field="FALSE"
S-Email-Subject="Ticket Order" S-Date-Format="%m.%d.%y" S-Time-Format="%I:%M
%p" S-Builtin-Fields="REMOTE_NAME REMOTE_USER HTTP_USER_AGENT Date Time"
S-Form-Fields="Name Address Telephone Tickets Email "
U-Confirmation-Url="ticket_confirmation.htm" startspan --><!--webbot
bot="SaveResults" endspan -->
 
S

sheetrum

Not exactly what I was looking for!

I give it a test when I get a chance though.

----
 
T

TB

Insert this little piece of code:
<%
response.write Month(now()) & "/" & Day(now()) & "/" & Year(now())
%>

On February 22nd, that will produce: "2/22/2005".

Cheers,

TB
 
K

Kevin Spencer

On February 22nd, that will produce: "2/22/2005".

Well, today at least. Next February 22nd it will return something different.
;-)

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.
 
T

TB

I wrote that because I didn't know in which time zone "sheetrum" was writing
in (I am from Spain, several hours of the the US for instance). Also I don't
expect this thread to be alive on February 22nd, 2006....... :)
 
R

Ronx

Will not work.
The confirmation page is processed by the extensions. ASP code and the
extensions will not work together.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top