printable form

L

Les Wildbore

I would like for my clients to be able to print a form then fax this form to
me . How can this be done ?
The form can firstly be sent to them but prefered printed on their printer
at basicly at a push of a button .
 
T

Thomas A. Rowe

Make the form into a PDF, that they would download and print.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
D

Dan L

Put this in place of your submit button:

<input id="printbutton" type="button" value="Print and Fax to
1-800-123-4567"
onClick="javascript:window.print()" alt="Print">
 
Top