Export GridView To Excel Without Losing Grid Lines In Excel?

Mar 4, 2010

I have a GridView that I want to export to Excel. When I use the sample code I find online, it exports the content to Excel just fine, but for some reason it also clears out all grid lines outside of my exported table.

For your average excel user this is easy enough to fix, but I need this solution to work for everyone.

So then is there a way to export the data in a GridView into an Excel Workbook so that it looks like it was just typed into Excel? I've pasted the code I am using below, assume that a GridView called toPrint exists and has accurate data.

Response.Clear();
Response.AddHeader("content-disposition", "attachment; filename=" + name + "_Registration_Forms.xls");
Response.Charset = "";
Response.ContentType = "application/vnd.ms-excel";
Page.EnableViewState = false;
System.IO.StringWriter stringWrite = new System.IO.StringWriter();
System.Web.UI.HtmlTextWriter htmlWrite = new HtmlTextWriter(stringWrite);
toPrint.RenderControl(htmlWrite);
Response.Write(stringWrite.ToString());
Response.End();

EDIT: Found one partial solution. If I export as a comma-delimited list and set the header to be a CSV file, it opens fine and all grid lines (even those outside of the exported data) are showing. The only problem with this of course is having to strip out every comma and newline character from my values before exporting them.

View 1 Replies


Similar Messages:

Export To Excel W/ Extra Lines?

Jan 27, 2010

It's been a while since I've posted here, but I do have a vexing question. I have an export to Excel that is working just fine with the exception that I have one blank line at the top of my export and one blank line at the bottom of my export. All paging and sorting are turned off at this point, so I'm really not sure where these empty lines are coming from. They appear above the header row and below the last row of data, almost like there's an invisible line that gets created after the data makes it to Excel.

View 6 Replies

Crystal Reports :: Unable To Get Column And Row Lines When Export To Excel?

Dec 4, 2010

When i export crystal report (table formtatted) to excel (using in web app) and see the output than i dont get column and row lines i mean My data comes in table format but without column and row lines. Can anyone pl guide me on this? What should i do to get proper format like present in crystal report.

View 1 Replies

Forms Data Controls :: Gridview - Export To Excel And Formatting Excel From Right To Left

Jun 10, 2010

How can I export data from a Gridview to excel and once exported the data should be formatted in right to left (arabic) manner. How can I achieve this?

View 2 Replies

Data Controls :: Export GridView To Excel And Save Excel File To Folder?

Apr 6, 2014

i use this code to export data into word.

Protected Sub Export(sender As Object, e As EventArgs) Handles btn_printexcel.Click
Response.Clear()
Response.Buffer = True

[Code]....

but the export docs will be downloaded into the user computer.

what should i do so that the exported docs is save into the server?

View 1 Replies

Forms Data Controls :: Export Gridview To Ms Excel - Set Excel Page Orientation As Landscape

Jan 22, 2010

I am exporting a gridview in MS Excel as mentioned in the following link:

[URL]

I want to set orientation of excel pages as landscape. Is there any way to do that? Any header information to be added for file being exported to set orientation of pages as landscape?

View 2 Replies

When Export Grid View Export In Excel It That String Shows In Single Line?

Jul 24, 2010

i have in grid view that grid view have very long string. when i export grid view export in excel it that string shows in single line

View 1 Replies

Web Forms :: Export To Excel Function Errors When Trying To Render The Grid For The Export?

Apr 27, 2010

I have a web form that contains a GridView, which impliments Search in Grid with a TextBox and Button control in the footer. This works as I have it now. I have also implimented a Export to Excel function. The Export to Excel works by itself if the Search in Grid function is not included in the footer.The Export to Excel function errors when trying to render the Grid for the export. Is there a better way to incorporate both functions and accomplish the same thing? Am I missing something simple?

[Code]...

View 21 Replies

Visual Studio :: Exporting A .rdlc To Excel / Analagous Export Of That Report To Excel?

Nov 2, 2010

I've got an .rdlc report which I print from my .net app (C# Visual Studio 2005), where I use a RemoteReportPrinter object. I give it as parameters the server name, report name, report parameters, etc. Works fine. My question is, I would live to do an analagous export of that report to Excel. Set it up exactly the same, but have it export to Excel rather than print, probably using some other type of object than RemoteReportPrinter.

View 1 Replies

Databases :: Export To Excel Multiple Sheets Without COM Interop Or Excel Object?

Feb 18, 2011

i want to export multiple tables in a dataset to excel workbook with each tables as sheets without using COM Interop or Excel Object.

View 2 Replies

Forms Data Controls :: Export Datagrid To Excel Without Excel Component?

Sep 22, 2010

We have the requirement to export the data from the grid excel. We can't install the Excel on the server. The excel generated need to be in the printable format. The excel generated needs to have custom headers, footers, repeatble rows, columns and landscape / portrait orientation style.

View 1 Replies

Web Forms :: Count Total Record In Data Grid And Export To Excel In C#?

Aug 6, 2010

how to count total record in my data grid and after that export the records to excel ?

GridView id="grdCustomer"
void Data()
{
qry = "select * from customer order by customerId DESC";
DataSet ds = new DataSet();
ds = DBUtil.getTable(qry);
if (ds.Tables[0].Rows.Count != 0)
{
grdCustomer.DataSource = ds;
grdCustomer.DataBind();
}
else
{
lblMsg.Text = "Customer List Is Empty";
}
}

View 4 Replies

Forms Data Controls :: Export To Excel With Two Sheets From Two Grid Views?

Jun 16, 2010

Export to Excel with two sheets from two grid views. I am in need of export two grids into a single excel with two sheets.

View 2 Replies

Forms Data Controls :: Export To Excel - Desing And Build Big Html Table Into Excel?

Feb 25, 2011

i have table something like this on click of export to excel i need to save that or export that to excel file .can u plz help me how i can do this.one more thing how i can desing and build that big html table into excel is there any simple way i can do the same

View 1 Replies

How To Export Results In Sheet To Excel Without Installing Excel On Server

Sep 22, 2010

We are deveopingawebiste in asp.net. There are tempelates of each aspx page made in the form of excel sheet. Upon completion of the online calculation, the user is to be allowed to export the results to excel and save them. There would be obviously no formulae in such sheet

I do not want to install Excel on theserver and instead want to utilize the Excel installed on the user's computer for this purpose as every user's computer is expected to have Excel installed. Is this possible to do? How to do this?

I am not an expert in this. let me know if you would need any more information or clarification.

View 2 Replies

Controls :: Read Table (Grid) Data From PDF / Convert And Export To Excel File

May 7, 2015

I have a file pdf, in file pdf of me has a table with many columns. How to Fill data from file pdf to columns of file Excel?I want fill data from file table of file pdf to file excel following format of file pdf.

View 1 Replies

Export From Gridview To Excel

Dec 14, 2010

I want to export gridview to Excel and followed the code from the link below but never get it work. [URL] I used the data as below but after exporting, it became 1234567, 2266998,3388445. They are all missing '0'.

MEMBID (varchar(20))
01234567
02266998
03388445

View 6 Replies

C# - Export To Excel From Gridview?

Jun 24, 2010

i have a code for export to excel,in my gridview i set paging to dispaly no of records in pagecount. but in my export to excel it is not giving me entire records,insted it is showing me the same paging with 6 record.

my code:

string attachment = "attachment; filename=Contacts.xls";
Response.ClearContent();
Response.AddHeader("content-disposition", attachment);
Response.ContentType = "application/ms-excel";

[Code]....

how to change /disable the paging to get all the records from my gridview

i have numbers in gridview as +9199.... but after exporting it is showing me in the format of 9.99....

how to pass the formatcells in numbers from here..

View 3 Replies

How To Export To Excel With Some Excel Manipulation

Jan 29, 2010

i have this website with a gridview and a button that enables to user to export the data from the gridview to excel using this code.

[Code]....

If you would imagine the result of the exported data from gridview (Data Only without any paging...etc...), the intersection of the first Row and First Column is placed in A1 cell of excel to display the table.

what i wish to do is upon exporting i would like to ex. add 2 more rows above the table so that the resulting table intersection of the first row and first column is located in C1 cell.

View 1 Replies

Forms Data Controls :: Export Data To Excel And Set Excel File Column Format?

Sep 1, 2010

i have try to export data to excel using gridview.

I have export it successfully but some data is missing which is due to the column format in the exported excel file is not TEXT .

[Code]....

I need to set the exported excel file column format to TEXT but find no solution on this.

View 2 Replies

How To Export An Image To Excel On Top Of Gridview

Oct 26, 2010

How could we Export an image to Excel on top of a gridview, using Respone.Write

View 3 Replies

VS 2008 Gridview Export To Excel?

Jan 11, 2011

I have a custom control gridview:I have a filter row in the header of each column with a textbox and a button to filter. when the user clicks the filter button this is one of the blocks of code that get executed

Code:
Protected Overridable Sub ApplyFilterCommand(ByVal filterCommand As String)
Dim dsv As DataSourceView = Me.GetData

If (TypeOf dsv Is SqlDataSourceView) Then

[code]....this works. However, all rows from the datasource are exported. say the initial number of rows where 54. I then filter a column, the number of rows in the gridview are now 29.I then export to excel, and all 54 rows are exported.

View 3 Replies

Export Gridview Contents To Excel

Mar 21, 2016

I have done this before, and am simply pasting the code that works on other pages to this page, but I cannot seem to get this function to work on this particular page. When Excel is opened after the export, all I get is <div> on line 1 and a few lines later I get </div>.

ASPX markup:

Code:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="LSOReport.aspx.vb" Inherits="Secure_LSOReport" %>
<!DOCTYPE html>
<link href="../CSS/Style1.css" rel="stylesheet" />
<link href="../CSS/style2.css" rel="stylesheet" />
<link href="../CSS/Style3.css" rel="stylesheet" />

[Code] ....

View 3 Replies

Forms Data Controls :: How To Count Total Record In Data Grid And Export To Excel

Aug 6, 2010

how to count total record in my data grid and after that export the records to excel ?

Below are the coding of my datagrid .

GridView id="grdCustomer"
void Data()
{
qry = "select * from customer order by customerId DESC";
DataSet ds = new DataSet();
ds = DBUtil.getTable(qry);
if (ds.Tables[0].Rows.Count != 0)
{
grdCustomer.DataSource = ds;
grdCustomer.DataBind();
}
else
{
lblMsg.Text = "Customer List Is Empty";
}
}

View 2 Replies

Forms Data Controls :: Unable To Export Data To An Excel File In Grid Format

Sep 7, 2010

I'm exporting data to an excel sheet from the ojects list. The data is exporting to excel sheet well, but I'm unable to see the grid format for the data. The data is looking with out the rows and columns lines.I think I'm missing to set some property or somethnig ehwn exporting.

View 6 Replies







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