HttpResponse response = HttpContext.Current.Response; 
response.ContentEncoding = System.Text.Encoding.GetEncoding("utf-8");
response.ContentType = "application/vnd.ms-excel";

response.AppendHeader("Content-Disposition", "attachment; filename=" + Order_NO + ".xls");