TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Export Gridview to CSV Format
Ashish Srivastava
May 11
2016
Code
760
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
expand
protected
void
btnExportCSV_Click(
object
sender, EventArgs e)
{
Response.Clear();
Response.Buffer =
true
;
Response.AddHeader(
"content-disposition"
,
"attachment;filename=GridViewExport.csv"
);
Response.Charset =
""
;
Response.ContentType =
"application/text"
;
GridView1.AllowPaging =
false
;
GridView1.DataBind();
StringBuilder sb =
new
StringBuilder();
for
(
int
k = 0; k < GridView1.Columns.Count; k++)
{
//add separator
sb.Append(GridView1.Columns[k].HeaderText +
','
);
}
//append new line
sb.Append(
"\r\n"
);
for
(
int
i = 0; i < GridView1.Rows.Count; i++)
{
for
(
int
k = 0; k < GridView1.Columns.Count; k++)
{
//add separator
sb.Append(GridView1.Rows[i].Cells[k].Text +
','
);
}
//append new line
sb.Append(
"\r\n"
);
}
Response.Output.Write(sb.ToString());
Response.Flush();
Response.End();
}
Export Gridview
CSV Format