I see it's pretty discussed both here and other sites but I still can't find precise and complete answer.

I have a button which is exporting database table to excel and I want to specify (hard-coded is still fine) the sheet name of it instead of the default.

Isn't it just 1-2 lines of code? I found something which uses some libraries and crap I don't really need I guess... Here is a part of the code where the file is streamed:

DataTable dt = GetData();
        string attachment = "attachment; filename=" + getProject + ".xls";
        Response.ClearContent();
        Response.AddHeader("content-disposition", attachment);
        Response.ContentType = "application/vnd.ms-excel";
        string tab = "";
        foreach (DataColumn dc in dt.Columns)
        {
            Response.Write(tab + dc.ColumnName);
            tab = "\t";
        }
        Response.Write("\n");

Thanks in advance :)

link|improve this question

56% accept rate
1  
You are generating tab separated response. You need to use Office interOp API. – AVD Jan 17 at 13:22
possible duplicate of Passing in Tab name for CSV excel sheet – dsolimano Jan 17 at 13:28
Something like: Microsoft.Office.Interop.Excel.Worksheet xlSheet; But then what should I assign the variable to ? – Pepys Jan 17 at 13:28
@dsolimano It is not.. he is trying to do this in CSV not xls – Pepys Jan 17 at 13:29
@Pepys, you are also trying to do it in CSV. Naming something .xls is just a trick to get the CSV file to open in Excel on the client's machine. – dsolimano Jan 17 at 13:33
show 4 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.