views:

41

answers:

2
+2  Q: 

Asp.net print page

I wont to create a print preview asp.net web page.

Can any one help me with an example how these should be done?

Thanx. :)

A: 

a preview for print page should be just like the page you want to print minus stuff that "heavy" for print like images and stuff like that.

you can open a pop up windows of the same window but maybe send a parameter in the query string that tells the page it needs to be in printable version

then just creat a function on the page that makes every "heavy" elemnt visible=false

then you will have a printable version without much work.

guy schaller
+12  A: 

Try this may be this will help you...

http://www.codeproject.com/KB/aspnet/PrintPreview.aspx

Pankaj Mishra