Hello, Basically what I would like to see happen is someone fill out this form, and have the information emailed to a certain email address... http://www.goleasing.com/portal/usfitness/ And have the "Equipment cost" field pass on to the page below.... (actually have it pass directly to the results page, which you get after you click go on the link below) http://www.goleasing.com/online_application_quick_lease_quote.asp Can this be done? I have a very very basic knowledge of ASP so please be gentle hah... Thanks!
simple enough, start by doing the email then either cache the value in a sessoin variable and redirect to the new page or pass the value as a parameter on the querystring when you response.redirect to the next page. Lots of other options too.
The link below will show you how to send emails using CDOSYS: http://www.w3schools.com/asp/asp_send_email.asp Then, after sending the message try: Response.Redirect "online_application_quick_lease_quote.asp?equipmentCost=" & Request.Form("equipmentCost") Code (markup): and to access the value from the second page: Dim ec ec = Request.QueryString("equipmentCost") Code (markup):