Click to See Complete Forum and Search --> : Submit Print


Roadrunner
04-18-2007, 08:05 PM
Hi,

I have developed a dynamic form in Dreamweaver asp linked to an access database.

Is there a way that when the user clicks submit it also prints the contents of the form so I need to link the submit button to printing.

KDLA
04-19-2007, 12:51 PM
Do you want them to print out the form BEFORE submit, or a confirmation page that appears AFTER? This is the standard javascript for a print/submit button:

<input type="submit" value="Submit" onClick="window.print()">

but it prints whatever is in the window.
KDLA