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 :)
.xlsis just a trick to get the CSV file to open in Excel on the client's machine. – dsolimano Jan 17 at 13:33