Printable form results.

G

Guest

Hi

I would like if possible to include a Print Details button after client has
filled in a form. I will use
<%
DIM strBoxName
strBoxName = Request.Form("BoxName")
%>
to pass the variables from the form

I can use a Confirmation Page if nes. But in this case is it possible to
set the page limits. That is to make the page A4 (or slightly smaller) with
page breaks, etc.

Or is it possible to have a button the opens a word doc with the fields merged

If anyone knows of a webpage that gives details (with simple to use
instrcutions) it would be a great help.

Many thanks
 
P

Paul C

Hi Wayne
You could try a response write where the "your email has been sent
successfully" message appears
<%Response.write strBoxName%> you might have to contain this in a table to
keep the text together in printable chunk

then use javascript to print the page. do a search for print buttons in
javascript there are loads

If you page design makes a mess of the print then you could use a form with
the response write in a text box field like
<input type="text" name="box_name" value="<%Response.write strBoxName%>"
size="30">
to pass the info to a blank page with no page images and print from there.

Paul M
 
G

Guest

Hi Paul

Thank you for your expertise

--
Wayne
Manchester, England.



Paul C said:
Hi Wayne
You could try a response write where the "your email has been sent
successfully" message appears
<%Response.write strBoxName%> you might have to contain this in a table to
keep the text together in printable chunk

then use javascript to print the page. do a search for print buttons in
javascript there are loads

If you page design makes a mess of the print then you could use a form with
the response write in a text box field like
<input type="text" name="box_name" value="<%Response.write strBoxName%>"
size="30">
to pass the info to a blank page with no page images and print from there.

Paul M
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Create Printable webpage 3
Printable Version 4
Form Results 2
Send table data automatically to form? 15
Pass a variable from page to form 7
Reply to form question 1
Frontpage Form Question 8
printable page 7

Top