Implementado no seguinte evento de clique de botão:
private void btnMIME_Click (remetente do objeto, System.EventArgs e)
{
BindData();
Response.ContentType = "aplicativo/vnd.ms-excel";
Response.AddHeader("Disposição de conteúdo", "inline;filename="
+ HttpUtility.UrlEncode("Baixar arquivo.xls",Encoding.UTF8 ));
//Se a saída for Word, modifique-a para o código a seguir
//Response.ContentType = "aplicativo/ms-word"
//Response.AddHeader("Disposição de conteúdo", "inline;nome do arquivo=test.doc")
StringBuilder sb=new StringBuilder();
System.IO.StringWriter sw = novo System.IO.StringWriter(sb);
System.Web.UI.HtmlTextWriter hw = novo System.Web.UI.HtmlTextWriter (sw);
sb.Append("
dgShow.RenderControl(hw);
sb.Append("