IE 8 で Excel にエクスポートできません。「IE は URL から filename.aspx をダウンロードできません」というメッセージが表示され続けます。「IE はこのインターネット サイトを開くことができませんでした。要求されたサイトが利用できないか、見つかりません。もう一度やり直してください」
httpsを無視してhttpを開こうとしているように見えますが、間違っている可能性があります。この記事: http://support.microsoft.com/kb/323308
私のコードは次のとおりです。
StringWriter sw = new StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
gvResources.RenderControl(htw);
Response.ClearContent();
Response.ClearHeaders()
Response.AddHeader("Content-Disposition", "attachment; filename=AdHocReport.xls");
Response.ContentType = "application/vnd.ms-excel";
Response.Write(sw.ToString());
Response.End();