How to print details view details?(pdf)
can i print detailsview details in pdf format? Example:in Details view i have user details,my requirement is print the userdetails.(just like printout)
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Posted May 31, 2011, 7:33 AM
Step 2 : Put the Detailsview inside a Div.
Step 3 : From javascript, call the div and do window.print by using the below code.
var dv= document.getElementById('<%= Div1.ClientID %>');
var printWin = window.open('', '', 'width=500,height=500,toolbar=0,scrollbars=1,status=0,resizable=1');
printWin.document.write(dv.outerHTML);
printWin.document.close();
printWin.focus();
printWin.print();
printWin.close();
Step 4: Select your PDF printer and to print it.
hope this helps you.
Dorababu MekaPosted May 31, 2011, 6:30 AM
http://forums.asp.net/t/1611812.aspx