Guest User

Untitled

a guest
May 21st, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. Response.Clear();
  2. Response.ContentType = "application/vnd.msexcel";
  3. Response.AddHeader("content-disposition", "attachment; filename=rapor.xls");
  4. Response.ContentEncoding = System.Text.Encoding.Default;
  5. System.IO.StringWriter stringWrite = new System.IO.StringWriter();
  6. System.Web.UI.HtmlTextWriter htmlWrite = new HtmlTextWriter(stringWrite);
  7. panel1.RenderControl(htmlWrite);
  8. Response.Write(stringWrite.ToString());
  9. Response.End();
Add Comment
Please, Sign In to add comment