knowledgehunter
knowledgehunter

Reputation: 1415

Printing a form

Can I have a button in my form which shows the print dialog box so that the user can print that form?

Upvotes: 1

Views: 263

Answers (2)

tahdhaze09
tahdhaze09

Reputation: 2213

Attach this to your button:

onclick="javascript:window.print()"

Not ideally semantic, but it works.

Upvotes: 0

Scott Whitlock
Scott Whitlock

Reputation: 13839

I think this example from Microsoft might help you.

Upvotes: 2

Related Questions