Forms Data Controls :: Printing The Gridview In Page?

Aug 10, 2010

i am printing girdview on clicking on button

[Code]....

Public Shared Sub PrintWebControl(ByVal ctrl As Control, ByVal Script As String)
'dim StringBuilder sb = new StringBuilder()
Dim sb As StringBuilder = New StringBuilder()
Dim stringWrite As IO.StringWriter = New IO.StringWriter(sb)
Dim htmlWrite As System.Web.UI.HtmlTextWriter = New System.Web.UI.HtmlTextWriter(stringWrite)
If TypeOf ctrl Is WebControl Then
Dim w As Unit = New Unit(100, UnitType.Percentage)
CType(ctrl, WebControl).Width = w
End If
Dim pg As Page = New Page()
pg.EnableEventValidation = False
pg.EnableViewState = False
pg.MaintainScrollPositionOnPostBack = False
If Script <> String.Empty Then
pg.ClientScript.RegisterStartupScript(pg.GetType(), "PrintJavaScript", Script)
End If
Dim frm As HtmlForm = New HtmlForm()
pg.Controls.Add(frm)
frm.Attributes.Add("runat", "server")
frm.Controls.Add(ctrl)
pg.DesignerInitialize()
pg.RenderControl(htmlWrite)
Dim strHTML As String = stringWrite.ToString()
HttpContext.Current.Response.Clear()
HttpContext.Current.Response.Write(strHTML)
HttpContext.Current.Response.Write("<script>window.print();</script>")
HttpContext.Current.Response.End()
End Sub

I get the error at line: pg.RenderControl(htmlWrite);

I tried setting the Enable Event Validation to false on the page but that didnt work..

View 1 Replies


Similar Messages:

Data Controls :: Printing Gridview Header In Each Printed Page

Dec 3, 2012

How to print the GridView headings in each page, in case the gridview returns about 100 records and we wish to print all of those, with page heading in each page.

View 1 Replies

Data Controls :: GridView Printing With Paging And Page Break With Hiding Column?

Feb 25, 2016

[URL]

using above code i am able to print gridview directly without hidden fields.after added to hiddenfields to gridview , hiddenfield values are visible for printing.after i am using gridview.colums[i].visible=false column not visible while printingproblem is after print the gridview not visible whatever my columns set visible false.Example:at printing time i am set checkbox visible false, after printing i want reload same page with checkbox but check box not visible after printing gridview

View 1 Replies

Forms Data Controls :: DataGrid Page Break On Printing?

Aug 19, 2010

I have this problem with DataGrid printing.

I have a page which contains somo labels and a DataGrid.

When i try to print the page, only 1st page contains the verticle and horizontal lines of the grid. The rest of the pages do not contain any lines.

Second thing, between pages while printing there are some word break of a line. I dont want this line break.

View 1 Replies

Forms Data Controls :: Printing Html Code Instead Of Printing Html View In PDF?

Dec 22, 2010

I am using formview control to generate invoice. But instead of printing html view it is printing html code in PDF. I am doing like this:

[Code]....

View 2 Replies

Web Forms :: How To Add Page Break To Gridview Printing

Feb 15, 2012

How add Page break to Gridview Printing 

My gridview  size is 10 pages 

And I want to  print gridview with page break so that my page will get displayed without any row breaking on two pages.

View 1 Replies

Data Controls :: Printing Only Selected Columns Of GridView?

Dec 13, 2011

I need to print only the selected columns of the gridview 

[URL]....

and i need to print according to selected columns of gridview ...not the selected rows

View 1 Replies

Data Controls :: Printing GridView Placed Inside UpdatePanel

Nov 24, 2013

I want to implement this concept using master page, but its not working.

[URL] ....

When i click on the button 'Print Current Page', no action is taking place, even that print window is also not opening.

View 1 Replies

Data Controls :: Change BorderColor Rows And Columns In GridView Before Printing

Aug 11, 2012

i want to change the color of border rows and columns in the grid view in asp for printing purpose.

View 1 Replies

Printing Content Of A Page While Hiding Some Controls

Oct 15, 2011

On my page, I have some dropdowns along with labels above the dropdowns containing the currently selected items.I also have a grid bellow the dropdowns reflecting the resulting data corresponding to the selected dropdown values.

I need to allow the user to print the grid as well as the label controls while excluding the dropdowns from my resulting printed page.

View 1 Replies

Forms Data Controls :: Printing Multiple Pages With C#

Nov 6, 2010

i have a trouble with printing pages. i'm taking my datas on database. i can't print mor pages than one. i tried using e. HasMorePPAges=true property. But i couldn't. also i look out this subject on internet. i couldn't find any source helpful. How can i do printing multiple pages?

View 3 Replies

Forms Data Controls :: Printing And Displaying Listview?

Feb 8, 2011

An attendee scans a confirmation number (barcode) when he comes to attend any conference and his tickets are to to printed

Now there are 2 problems

1) There should be an automatic request sent for printing when an attendee scans his barcode. How can I do that?

2) The tickets paper is of specific size within which this ticket should be printed in this case Lenght=4 inches and width =1.5 inches.

View 3 Replies

Forms Data Controls :: Printing SqlDataSource Select Statement?

May 7, 2010

I'd like to print out the select statement for a SqlDataSource to see exactly what is being issued to the database. I added an OnSelecting event and the code shown below. The problem is that it's printing the variables in the select statement rather than the values assigned to those variables. How do I print out the "resolved" output so that I can see the values being passed to the database.

[code].....

View 2 Replies

Forms Data Controls :: Printing Rows And Columns Of Data?

Feb 19, 2010

How do you loop through a dataset in vb.net so it can be printed to a file in rows and columns ?It's the looping through the dataset I can't get.

View 1 Replies

Web Forms :: Hide Master Page File During Page Printing?

Mar 19, 2010

I'm building an ASP.Net project that will require the dynamic creation and printing of images. I've been asked to "hide" the header information (which is contained in a master page) when the page is printed. Is this some sort of a property that can be changed when the screen is printing?

The print event is actually running on the client side:

btnPrint.Attributes.Add("onclick",
"JavaScript: window.print(); return false;")

View 1 Replies

Forms Data Controls :: Printing Girdview Content Used A Java Script

Jul 22, 2010

i m using a grid view with paging. and for printing gird view content i used a java script but when i click the print button it prints only selected page . if their is any way to print all data with no paging in grid view

View 1 Replies

Web Forms :: Printing More Than One Page?

Jan 18, 2011

i have one situation where i need to print information data into company 'Letter Head' ..so it already have logo and the address there in the paper...

so i have a problem to printing on that page if the data is too long and need another extra Letter Head..The problem is, how do i make sure that the data will not overlap on the logo and address in the letter head..?

which one is best solution,

use Response.Write("bla bla bla.............");

or just design it in html code and just use javascript:window.print(); command..?

View 3 Replies

Web Forms :: Printing A Page

Jun 6, 2012

 I want  to print one of my child pages in my web applicaion. i am using visual studio 2005 to design this web application.i want to print a child page after clicking a button.

View 1 Replies

Forms Data Controls :: Finding Guidance For Custom Pager / Printing Report

Nov 5, 2010

I'm really looking some guidance on what the most feasible solution for the problem is ...

What I'm Trying to Do:

I have a stored procedure that I'm binding to a gridview

[Code]....

Essentially it's just a report that sorts by Client, where i'm hitting the wall is I need to report to be printable with one client per page ...

client A ... page break client B etc ...

My initial through was one to come up with some kind of JavaScript function (not to great with client side javascript yet) or to set up a pager that would split by the client and allow the end-user to print out each page ...

View 2 Replies

Forms Data Controls :: Downloading Pdf Without Prompt Window To Local Computer Then Printing Automatically

Mar 30, 2011

i have two tasks to accomplish. There are several pdf files (invoices) sitting in web server. My tasks are 1) enabling Olga to download multiple invoices into her local computer WITHOUT prompting any dialog box. 2) printing these files then automatically by default local printer from her desktop computer. How is possible this? She has birthday soon. No gift could be better than this solution as she has to open each pdf separately and hit print button about 40 times a day.

View 1 Replies

Web Forms :: Page With Background Won't Show While Printing

Jul 23, 2010

I found a javascript that you can use to print a page in ASP .Net. It works great but there is one issue. If you have used a stylesheet, then any background color or image that you have defined in css, it won't show up while printing. The javascript is below:

<script type="text/javascript" language="javascript">

View 3 Replies

Web Forms :: Printing Aspx Page In Pdf Format

Oct 3, 2010

[Code]....

In the above code , i am creating pdf file from aspx page and i am sending it as a attachment in email. i want to print above pdf page instead of sending email. could any please extend above code to print it.

View 7 Replies

Web Forms :: How To Print Label And Some Other Control With GridView Printing

May 31, 2012

I have printed GridView Control, there are labels above the GridView Control on Form ...

Now i need to print Labels, Textboxes above the GridView Control and also GridView Records ...

View 1 Replies

Web Forms :: Printing Child Page / The Print Dialog Box Does Not Appear?

Jan 28, 2010

I have small web interface that includes a print button as follows: [Code]....

When I run this page by itsef, everthing works great. However, when the page (it is called Defaut.aspx) is loaded within a frame on our intranet site, the print dialog box does not appear.

View 3 Replies

Web Forms :: How To Set Content Position On Page While Printing In JavaScript

Nov 12, 2012

how to set position in of content for printing.

i want to print content at the bottom of the page.

i am using this code for printing

<script type="text/javascript" language="javascript">
function print() {
var disp_setting = "toolbar=no,location=no,directories=no,menubar=no,";
disp_setting += "scrollbars=yes,width=300, height=500, left=00, top=100, right=300";
var content_vlue = document.getElementById("print_content").innerHTML;
var docprint = window.open("", "", disp_setting);

[Code].....

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved