我知道我可以導出我的GridView到Excel,而無需使用VerifyRenderingInServerForm(Control control)
這樣的:如何發送的GridView爲Excel電子郵件附件
Response.Clear();
Response.Buffer = true;
Response.AddHeader("content-disposition",
"attachment;filename=filename.xls");
Response.Charset = "";
Response.ContentType = "application/vnd.ms-excel";
StringWriter sw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(sw);
GridView1.AllowPaging = false;
GridView1.DataBind();
//Change the Header Row back to white color
GridView1.HeaderRow.Style.Add("background-color", "#003c74");
GridView1.HeaderRow.Style.Add("color", "#ffffff");
for (int i = 0; i < GridView1.Rows.Count; i++)
{
GridViewRow row = GridView1.Rows[i];
//Change Color back to white
row.BackColor = System.Drawing.Color.White;
//Apply text style to each Row
row.Attributes.Add("class", "textmode");
//Apply style to Individual Cells of Alternating Row
if (i % 2 != 0)
{
row.BackColor = System.Drawing.Color.AliceBlue;
}
}
GridView1.RenderControl(hw);
//style to format numbers to string
string style = @"<style> .textmode { mso-number-format:\@; } </style>";
Response.Write(style);
Response.Output.Write(sw.ToString());
Response.Flush();
Response.End();
如何修改這個使用Memory Stream
以便在發送該電子郵件作爲附件?