Hi there.
I am looking for a way to generate a report from a web form and attached it to an email so that I could send it.
The form is retrieving data from a Microsoft SQL server and display them in a print out ASP page.
There is a print button and an email button in javascript in the form. However, nothing is attached to the email at this point.
Could any one herl?
I am looking for a way to generate a report from a web form and attached it to an email so that I could send it.
The form is retrieving data from a Microsoft SQL server and display them in a print out ASP page.
There is a print button and an email button in javascript in the form. However, nothing is attached to the email at this point.
Could any one herl?
Code:
<form> ....etc <td><input type="button" value="Print this page " onclick="window.print();return false;" /></td> <td> <input type="button" value="Email" onclick="location.href='mailto:'" /></td> </form>
Comment