Sep
10
2010

Export data to excel in Asp.net MVC

Introduction

Exporting data from asp.net page to excel is one of the most common functionality used by asp.net web form developers. This is mostly done by rendering already displayed gridview into HTMLTextWriter and using StringWriter.

However, In Asp.net MVC applications, we don't use GridView server we still can take advantage of GridView control to export data to excel.

In this short article, I will focus on how easily we can display data from database in grid format (without jQuery grid plugin) and how to provide export to excel functionality in Asp.net MVC

Get data from database using LINQ to SQL

I am not going to explain details about how to add .dbml file to create data context. If you are unsure, please read ScottGu's blog here

In the default project, under Views -> Home I have added new aspx view file (you may want to use cshtml file instead) and created ActionResult EmployeeInfo in the home controller

public ActionResult EmployeeInfo()
        {
            DBContext dataContext = new DBContext();
            ViewData["Employees"] = dataContext.emps.ToList();
            return View();            
        }

The EmployeeInfo.aspx view file displays data returned by model in tabular format and also provides Actionlink "Export to excel" which will call FileExport action method from home controller

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
    Export grid to excel
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
    <form id="form1" runat="server">
    <h2>
        File Export</h2>
    <hr />
    <div id="ShowList" title="File List">
        <table id="Grid1">
            <thead style="background-color: #507CD1;color:White">
                <td>
                    Employee number
                </td>
                <td>
                    Employee Name
                </td>
                <td>
                    Job
                </td>
                <td>
                    Hire date
                </td>
            </thead>
            <tbody>
                <%
                  foreach (var item in (List<MVCUpload.emp>)ViewData["Employees"])
                    {
                %><tr>
                    <%
                    %><td>
                        <%:item.empno %>
                    </td>
                    <td>
                        <%:item.ename %>
                    </td>
                    <td>
                        <%:item.job %>
                    </td>
                    <td>
                        <%:item.hiredate%>
                    </td>
                </tr>
                <%
  }
                %>
            </tbody>
        </table>
        <%= Html.ActionLink("Export to excel", "FileExport","home")%>
    </div>
    </form>
</asp:Content>

Run the project and change url as, http://localhost:xxxx/home/EmployeeInfo. The view is displayed in browser as below (The random database used to create this example)

 

Generally, in Asp.net web form, export gridview to excel functionality excel file is created which contains all the formatting of exported gridview. Although in MVC, we dont use actual GridView control, while exporting data, we can take advantage of "dear" GridView server control.

Before going ahead, add following reference at top of homecontroller class.

using System.IO;
using System.Web.UI;
using System.Web.UI.WebControls;

See action method FileExport below. We have again retrieved data from DB context in order to bind GridView object.

public ActionResult FileExport()
        {
            //LINQ to SQL context class
            DBContext dataContext = new DBContext();
            //Create gridview object - Make sure you have added reference to Syster.Web.UI.ServerControls
            GridView gv = new GridView();
            //Call Method to apply style to gridview - This is optional part and can be avoided 
            StyleGrid(ref gv);
            //assing datasource from context class to gridview object
            gv.DataSource = dataContext.emps.ToList();           
            //Important - bind gridview object
            gv.DataBind();
            //We have gridview object ready in memory. Follow normal "export gridview to excel" code
            Response.ClearContent();
            Response.AddHeader("content-disposition", "attachment; filename=YourFileName.xls");
            Response.ContentType = "application/excel";
            //Ccreate string writer object and pass it to HtmlTextWriter object
            StringWriter sw = new StringWriter();
            HtmlTextWriter htw = new HtmlTextWriter(sw);
            //Call gridiview objects RenderControl method to output gridview content to HtmlTextWriter
            gv.RenderControl(htw);
            //Pass rendered string to Response object which would be presented to user for download
            Response.Write(sw.ToString());
            Response.End();
            return View("EmployeeInfo");
        }

The code is well commented for understanding. In summary, a GridView object is created using Web.ServerControls. Then data is fetched from data context class and assigned to GridView object as datasource and called DataBind()

If you want to replicate style of table displayed on page in exported excel file, then create a function to format gridview object in same way. i.e. this will be separate formatting for export only. In case you change the Css of table displayed on page then its up to you to modify the style of exported grid as well. The definition of StyleGrid method used in above code is

private void StyleGrid(ref GridView gv)
        {
            gv.HeaderStyle.BackColor = System.Drawing.Color.FromName("#507CD1");
            gv.HeaderStyle.Font.Bold = true;
            gv.HeaderStyle.ForeColor = System.Drawing.Color.White;
            gv.RowStyle.BackColor = System.Drawing.Color.FromName("EFF3FB");
            gv.AlternatingRowStyle.BackColor = System.Drawing.Color.Silver;
        }

Now, test export method by clicking "Export to excel" link.

Hope this helps someone looking for answer :)

Comments (12) -

VenkatapathiRaju

very nice article and it is very useful in my project ..!!!
And i very thankful to Mr.KedarRKulkarni...!!!

serkan

nice tip, thanks.

vinay

This is really cool article . i have got one have a look
dotnetpools.com/.../

Andrei

you are doing a great job..thank you!

babyearth discount coupon

You made some good points there. I looked on the internet for more information about the issue and found most individuals will go along with your views on this website.

My webpage ::  babyearth discount coupon - http://hefocesleu1982.leasepurchasehomes.net

Sherrie

You practice in your business? You look to know lots about the study.

Also visit my homepage: how to start a internet business ( Sherrie - http://www.lovecolombian.com/LaurieIFQ )

Empower network

I don't know whether it's just me or if perhaps everyone else encountering problems with your website. It looks like some of the text on your posts are running off the screen. Can somebody else please comment and let me know if this is happening to them as well? This could be a issue with my web browser because I've had this happen previously. Kudos

My webpage;  Empower network - http://www.solvingteam.it/wordpress/?p=6961

Maurine

Outstanding quest there. What happened after? Thanks!

Feel free to visit my page :: Garcinia Ultra -  Maurine - www.fxraiders.net/.../...e-december-18th-2012.html  -

Bernardo

You happen to be a really intelligent particular person! Smile

Here is my web blog: click through the up coming article ( Bernardo - www.clavio.de/.../increase_your_exposure_on_the_internet_now )

Marcia

As a Newbie, I am constantly exploring on the internet for articles that will enable me. thank you

Review my weblog - web host reseller ( Marcia - www.ourchurchvideos.com/.../uprofile.php?UID=579 )

cheap gaming laptops

It's an awesome piece of writing in support of all the online users; they will obtain advantage from it I am sure.

my web-site  cheap gaming laptops - http://gaminglaptopsunder500.info/

Larry

Hello. essential job. I didn't count on this on a Wednesday. This can be a crucial story. Thanks!

Visit my homepage - beliebtesten online shops * Larry - proofconference.com/.../design-suggestions-which-are-well-worth-exploring *

business idea plan

Hi, I met your blog through Google and the place appears really diverting to me.

My page:  business idea plan - forum.stichtingsecretgarden.nl/.../Web-Business-Support-You-Must-Not-Overlook

armani online outlet

I found your web log on yahoo and learn several of one's posts. crucial exercise! I just twittered around your web log

Here is my page;  armani online outlet - phpfox.webmaksi.com/.../

just click the next web page

Great website you have here but I was curious if you knew of any user discussion forums that cover the same topics talked about in this article? I'd really like to be a part of community where I can get feed-back from other knowledgeable individuals that share the same interest. If you have any recommendations, please let me know. Appreciate it!

my web page; Order Garcinia Cambogia -  just click the next web page - http://www.4-sharing.com/index.php?do=basic  -

home automation software

This blog was... how do I say it? Relevant!! Finally I've found something which helped me. Kudos!

Also visit my web-site:  home automation software - www.listarmenia.com/.../...ostic-software-3632.htm

Camcorder Reviews

The focus hunts a lot when filming a situation with a lot of movement, such as sports game, and the image isn't as clear as I would like given that this camera records in 1080p. A lot of the buttons that may have been originally found on Canon cameras are no longer existent. If you are shooting in HD, keep in mind that when you try to upload to You - Tube and other video sharing sites, the video may be too long or it may take longer to upload to the Internet. The ideal camcorder for You - Tube, therefore, would be capable of shooting video in You - Tube's native resolution and format.

Also visit my homepage;  Camcorder Reviews - http://bestcamcorderreviews.webs.com

discount coupons for hershey park

Hello to every body, it's my first go to see of this web site; this weblog includes awesome and really fine data in favor of readers.

Also visit my web blog -  discount coupons for hershey park - http://discountcouponcodes2013.blogspot.com

Social Media Marketing company

Hi! Do you know

if they make any plugins to help with SEO? I'm trying to get my blog to rank for some targeted

keywords but I'm not seeing very good results. If you know

of any please share. Kudos!

Feel free to surf to my web site;  Social Media Marketing company - http://thelowendtheory.org/EmmaBoatw

harvard software download

Wow! This blog looks exactly like my old one! It's on a entirely different topic but it has pretty much the same layout and design. Outstanding choice of colors!

My blog -  harvard software download - www.libanonchat.org/.../

tu pozycjonowanie

Zdecydowanie bedzie bolalo sytuacje nawet w wyszukiwarkach. Swoje rankingi i dodatkowo te slawe gwoli klientów zagadnienie dyspozycyjnosci. Persona bedzie zwiekszona, o ile uzyjesz w stopniu daleko idacym dokument.

Look at my homepage ...  tu pozycjonowanie - http://www.szkoleniaseo.pl

Christian Louboutin

Very nice article, just what I needed.

my blog  Christian Louboutin - thailandpra.com/.../user_detail.php?u=clarashv

Suzette

fantastic place: P

Feel free to visit my webpage ... family vacation packages all inclusive ( Suzette - miknuth.blogspot.co.at/.../...werde-gegen-die.html )

cheap gaming laptops

qweqweqwe  cheap gaming laptops - www.cameraraw.it/.../  asdaasfasfasf
adasfafascxvzcxv  cheap gaming laptops - www.cameraraw.it/.../  asdadad
cheap gaming laptops - www.cameraraw.it/.../  ascadvsdbsdbd
zxcz  cheap gaming laptops - www.cameraraw.it/.../  asdads
adasfsdg  cheap gaming laptops - www.cameraraw.it/.../  xcbxbxcb
cbcbnvbm  cheap gaming laptops - www.cameraraw.it/.../  ryruurt
4uruyjfg  cheap gaming laptops - www.cameraraw.it/.../  dghkgkjhl
678utfhg  cheap gaming laptops - www.cameraraw.it/.../  234tdh
2354etyh  cheap gaming laptops - www.cameraraw.it/.../  iuyt5
vdfgrht  cheap gaming laptops - www.cameraraw.it/.../  546ygh

Polo Ralph Lauren Factory Store

This post is in fact a good one it helps new net visitors, who are wishing for blogging.

Also visit my web page ...  Polo Ralph Lauren Factory Store - http://ragecraftrc.net/profile.php?id=119400

Polo Ralph Lauren Factory Store

I am genuinely thankful to the owner of this web page who has shared this wonderful paragraph at at this place.

Feel free to surf to my web page -  Polo Ralph Lauren Factory Store - article-collection.info/...-Polo-Shirts-Online.htm

Hung

As a beginner, always searching for articles online that can assist me. Give thanks you

My webpage: best small business ideas [ Hung - takwin.info/moodle/blog/index.php?postid=22448 ]

tractor supply discount coupons

Howdy very nice web site!! Man .. Excellent .. Wonderful .. I'll bookmark your web site and take the feeds additionally? I am satisfied to search out so many useful info here in the put up, we'd like develop extra strategies on this regard, thank you for sharing. . . . . .

Here is my web site ...  tractor supply discount coupons - http://savings247cx.bravesites.com

discount surgical coupon code

Excellent post! We will be linking to this particularly great content on our website. Keep up the great writing.

Feel free to visit my webpage  discount surgical coupon code - http://freediscountcouponcodesnow.wordpress.com

discount coupons for supplementwarehouse

There is certainly a great deal to find out about this topic. I love all the points you have made.

Here is my blog;  discount coupons for supplementwarehouse - http://discountcouponsandvouchers.weebly.com

tuerkei reise

Hi. crucial job. I didn't expect this on a Wednesday. This is a good account. Thanks!

my blog ...  tuerkei reise - africanamericansupersite.com/.../

Seo optimizing

Hello. critical job. I did not expect this on a Wednesday. This can be a vital story. Thanks!

Look at my page  Seo optimizing - x.nicbit.com/.../a-long-list-of-mighty-search-eng

Jerrod

This is too fine,

Feel free to surf to my web page zusatzversicherung vergleich ( Jerrod - blamebateman.com/.../ )

Free Book Downloads For Kindle

I constantly emailed this webpage post page to all my friends, as if like to read it afterward my links will too.

Here is my site -  Free Book Downloads For Kindle - http://yubihat.bytepub.com

Download Textbooks For Free

I just could not leave your website before suggesting that I really enjoyed the standard information a person provide for your visitors? Is going to be again frequently to investigate cross-check new posts

My blog ...  Download Textbooks For Free - http://beyusabe.eazylaunch.com

Recommended Browsing

sincerely pleasant exercising! I thoroughly enjoyed your report. Please spot much more generally once you have time. Thanks.

Also visit my blog post private krankenversicherungen rechner -  Recommended Browsing - iseekblog.com/entry.php  -

private krankenversicherungen vergleichen

pretty excellent physical exercise: D

my web-site;  private krankenversicherungen vergleichen - www.cnhonker.com/.../health-insurance-ways-keep-your-migraines-aside

Ray Ban Sunglasses Outlet

hello!,I love your writing so much! proportion we be in contact more about your post on AOL? I need an expert in this area to solve my problem. May be that's you! Looking forward to look you.

My webpage -  Ray Ban Sunglasses Outlet - http://www.dory-funk.com/cheapraybans.html

visit the up coming post

Awesome article.

Feel free to surf to my weblog ... garcinia cambogia where to but ( visit the up coming post - wiki.ku.dk/.../index.php )

Isidro

Thank you for your assist!

My website; krankenversicherung rentner ( Isidro - Volleyballmeme.com/.../ )

Instant income

Woah! I'm really loving the template/theme of this website. It's simple, yet effective. A lot of times it's tough to get that "perfect balance" between superb usability and visual appeal. I must say you've done a amazing job with this. Additionally, the blog loads super quick for me on Safari. Outstanding Blog!

my page:  Instant income - www.web-directory-listing.com/index.php

Kathryn

Hi there I like your post

Also visit my web site ... best consolidation loan student ( Kathryn - esperanto-jeunes.org/.../index.php )

Sheryl

Hello, i think that i saw you visited my weblog thus i came to “return the favor”.I'm trying to find things to enhance my site!I suppose its ok to use a few of your ideas!!

Here is my blog post; how to start a online business ( Sheryl - http://www.facebook.com/startyouronlinebusiness )

discount coupon for best buy

I'm very pleased to find this website. I need to to thank you for ones time due to this wonderful read!! I definitely appreciated every bit of it and i also have you book marked to check out new information on your website.

Feel free to surf to my site:  discount coupon for best buy - http://saving365by.jigsy.com

discount Contact lenses coupon

Very shortly this site will be famous amid all blog people, due to it's pleasant articles or reviews

Feel free to visit my blog -  discount Contact lenses coupon - http://coupon2013bx.pen.io

dallas world aquarium discount coupons

Very great post. I just stumbled upon your weblog and wanted to mention that I have truly enjoyed surfing around your blog posts. After all I will be subscribing to your rss feed and I hope you write again very soon!

Look into my homepage -  dallas world aquarium discount coupons - http://youronlinecoupon2013.angelfire.com

knotts berry farm discount coupons

Hi there! I understand this is somewhat off-topic however I needed to ask. Does running a well-established website such as yours take a massive amount work? I am brand new to operating a blog however I do write in my diary everyday. I'd like to start a blog so I will be able to share my own experience and thoughts online. Please let me know if you have any kind of recommendations or tips for brand new aspiring bloggers. Appreciate it!

my website -  knotts berry farm discount coupons - http://toponlinecouponcodes2013.bravesites.com

costume discounters coupons

Piece of writing writing is also a excitement, if you be acquainted with afterward you can write or else it is complicated to write.

My webpage:  costume discounters coupons - http://yourgoodsaving.wallinside.com

Knoebels Discount coupons

Way cool! Some very valid points! I appreciate you writing this article and also the rest of the website is very good.

My weblog ::  Knoebels Discount coupons - http://savings2013am.mywapblog.com

zetaclear review

This paragraph will assist the internet viewers for setting up new website or even a blog from start to end.  zetaclear review - flashans.ru/.../do_you_know_the_cause_of_nail_fungus   zetaclear scam - thefifthestateworld.com/index.php

Here is my web site ...  zetaclear review - www.hasenchat.net/.../bleach-to-treat-nail-fungus

nail fungus treatment

Nice post. I was checking continuously this blog and I'm impressed! Very useful info particularly the last part Smile I care for such information a lot. I was seeking this particular info for a very long time. Thank you and best of luck.  buy zetaclear - streamaxi.net/.../what-are-the-surefire-ways-to-avoid-and-prevent-nail-fungus  browse around this web-site [ http://myarticle.golengeeks.com/ - myarticle.golengeeks.com/article.php?id=2030 ]

My page -  nail fungus treatment - www.faccedatennis.it/.../

Agatha Christie Books Free Download

When I originally commented I clicked the "Notify me when new comments are added" checkbox and now each time a comment is added I get four emails with the same comment. Is there any way you can remove me from that service? Thanks a lot!

Have a look at my site  Agatha Christie Books Free Download - http://voucher365cz.xanga.com

free download e books

Please let me know if you're looking for a writer for your blog. You have some really good posts and I believe I would be a good asset. If you ever want to take some of the load off, I'd love to write some material for your blog in exchange for a link back to mine. Please send me an email if interested. Thanks!

Look into my web blog:  free download e books - http://topfreecoupon2013.tumblr.com

Books For Free

I'm impressed, I must say. Rarely do I come across a blog that's equally educative and interesting, and without a doubt, you've hit the nail on the head. The issue is something which too few men and women are speaking intelligently about. I'm very happy that I came across this in my hunt for something regarding this.

Take a look at my web page;  Books For Free - http://yourbestsaving2012.webnode.com/blog

casino jack imdb

Link exchange is nothing else however it is only placing the other person's blog link on your page at suitable place and other person will also do same in support of you.

Feel free to visit my blog post  casino jack imdb - http://lfh-test-web.isprime.com/?p=3434

Online Coupons codes

You really make it seem so easy with your presentation but I find this topic to be really something which I think I would never understand. It seems too complex and extremely broad for me. I'm looking forward for your next post, I'll try to get the hang of it!

Also visit my page;  Online Coupons codes - www.singsnap.com/karaoke/member/freecoupon32

ford discount coupons

Wonderful beat ! I would like to apprentice while you amend your website, how could i subscribe for a blog site? The account helped me a acceptable deal. I had been tiny bit acquainted of this your broadcast provided bright clear concept

My web site  ford discount coupons - http://therainbowwell.com/couponcodes365am

discount dancewear coupon

You're so awesome! I do not think I've truly read through a single thing like that before. So great to find someone with a few unique thoughts on this issue. Seriously.. thanks for starting this up. This site is something that is needed on the internet, someone with a little originality!

Here is my site;  discount dancewear coupon - http://theaffiliatefunnel.com/voucher2012cy

Discount mugs Coupons

I'm impressed, I have to admit. Rarely do I encounter a blog that's both educative and interesting, and without a doubt, you have hit the nail on the head. The problem is something that not enough men and women are speaking intelligently about. I am very happy that I came across this in my hunt for something concerning this.

Also visit my web site  Discount mugs Coupons - http://savings365cz.thekingfishexpress.net

cheesecake factory discount coupons

Hi there,  You've done an excellent job. I will certainly digg it and personally recommend to my friends. I am sure they will be benefited from this website.

my weblog;  cheesecake factory discount coupons - http://voucher365bx.buyelectronicuk.com

Add comment

  Country flag

biuquote
  • Comment
  • Preview
Loading

About Me

You are visiting personal website of Kedar (KK)

Please go here to know more about me

Disclaimer

The opinions expressed here represent my own and not those of my past or present employers.

The concept/code provided on this site may not work as described. If you are using any code provided on this site. Then, please test it thoroughly. I shall not be responsible for any issues arising in the code. 

Month List