I have a jQuery-powered cost calculator, and I want to allow the webpage to send a summary of the calculator\'s values in an email. The server runs on classic ASP.
How d
use http://api.jquery.com/jQuery.ajax/ or http://api.jquery.com/jQuery.post/ to send the information to process.asp
Another solution is to set the values of the javascript variables to hidden form fields. Submit the form and read the form values on the server-side. After reading the values, create and send the email.