.xlsxファイルをエクスポートして、chromeを使用してmvcを介してExcelに変換するにはどうすればよいですか。.xlsでは機能しますが、.xlsxでは機能しません
     Response.ClearContent();
        Response.AddHeader("content-disposition", "attachment; filename= Estimate1.xlsx");
        Response.ContentType = "application/excel";
        StringWriter sw = new StringWriter();
        HtmlTextWriter htw = new HtmlTextWriter(sw);
        Response.Write(sw.ToString());
        Response.End();