Response.AddHeader("content-disposition", "attachment;filename=abc.xls");
Response.ContentType = "application/excel";
I am using the code above to download an Excel file but I want to download the Excel file to a specific path.
How can I do this?