form requests

D

Dave36

How do I group a request using post and request

example:
Arrival Information= <% =Request("Arrive_Month") %> <% =Request("Arrive_Day")
 
S

Stefan B Rusynko

Arrival Information= <% =Request.Form("Arrive_Month") & Request.Form("Arrive_Day")
or
Arrival Information= <% =Request.Form("Arrive_Month") & "/" & Request.Form("Arrive_Day")

See http://www.w3schools.com/asp/default.asp
_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


| How do I group a request using post and request
|
| example:
| Arrival Information= <% =Request("Arrive_Month") %> <% =Request("Arrive_Day")
 

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