Wrox Programmer Forums
|
ASP.NET 2.0 Basics If you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 9th, 2007, 03:12 AM
Authorized User
 
Join Date: Nov 2006
Posts: 28
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to akhilhp
Default Printing Data from Gridview

Dear All, I am using following JavaScript to print the Gridview. The Idea is to hide all the contents (except the Gridview) and then print the window. But the Probelem is that when I use it to print from a simple page it works fine. But when I try to use it in a page with master Page assigned to it. it gives error that object is required.
1. What might be the problem???
2. Is there any easy way to print the contents of a gridview??

The Javascript function is :
function PrintReport()

                  {
                        var tdTable0=document.getElementById("TableTop")
                        tdTable0.style.display = "none"
                        var tdTable1=document.getElementById("TableH1")
                        tdTable1.style.display = "none"
                        var tdTable2=document.getElementById("TableH2")
                        tdTable2.style.display = "none"
                       if (window.print)
                        {
                              window.print();
                        }
                        else
                        {
                              alert("your browser doesn't support this function")
                        }
                        var tdTable0=document.getElementById("TableTop")
                        tdTable0.style.display = ""
                        var tdTable1=document.getElementById("TableH1")
                        tdTable1.style.display = ""
                        var tdTable2=document.getElementById("TableH2")
                        tdTable2.style.display = ""
                  }
 
Old January 11th, 2007, 06:26 AM
Authorized User
 
Join Date: Nov 2006
Posts: 28
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to akhilhp
Default

Dear All,

I have found out the problem. The solution is instead of using the IDs of the controls we have to use in following way:
ctl00_ContentPlaceHolder1_Label1 instead of label1.

Thanks for trying.





Similar Threads
Thread Thread Starter Forum Replies Last Post
Printing gridview data - is it really that hard??? tmni VB How-To 0 April 30th, 2008 07:30 AM
Data Binding - Editing GridView Row Data desk_star BOOK: Professional ASP.NET 2.0 and Special Edition; ISBN: 978-0-7645-7610-2; ISBN: 978-0-470-04178-9 7 December 30th, 2007 11:07 AM
Printing DataGrid Data koneruvijay VS.NET 2002/2003 4 April 10th, 2007 05:58 AM
Printing the contents of a Gridview akhilhp ASP.NET 2.0 Professional 0 January 10th, 2007 02:01 AM
Stop printing just after completion of data. salman Pro VB Databases 0 September 30th, 2004 12:34 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.