|
■No32903 (ごう さん) に返信
すみません。 EXCELをシート分けしてダウンロードする方法です。
●ソース this.Response.ContentEncoding = System.Text.Encoding.GetEncoding("SHIFT-JIS"); this.Response.AddHeader("Content-Disposition", "attachment; filename=" + "test.xls"); this.Response.AddHeader ("Content-Disposition", "attachment;filename=" + this.GetFilename()); this.Response.ContentType = "application/octet-stream";
StringBuilder sb = new StringBuilder (); sb.Append(ProjectExport.MakeHeader(0)); res.BinaryWrite(System.Text.Encoding.Default.GetBytes(sb.ToString()));
このようにエクセルに値をぶち込むだけなのでどのようにしてシートを分けて値を入れ、ダウンロードすればいいのかわからなくなってしまったのです。
わかりにくくてすみません。 日本語あまり得意ではないので・・・
|