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
Gridview Excel Export In C#
Ashish Srivastava
Apr 27
2016
Code
1.6
k
0
3
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
expand
void
BindGrid()
{
DataSet objds =
""
;
GridView1.DataSource = objds;
GridView1.DataBind();
}
void
ExcelExport
{
Response.ClearContent();
Response.Buffer =
true
;
Response.AddHeader(
"content-disposition"
,
string
.Format(
"attachment; filename={0}"
,
"UserDetails.xls"
));
Response.ContentType =
"application/ms-excel"
;
StringWriter sw =
new
StringWriter();
HtmlTextWriter htw =
new
HtmlTextWriter(sw);
gvAdminDetails.AllowPaging =
false
;
BindGrid();
//Change the Header Row back to white color
Gridview1.HeaderRow.Style.Add(
"background-color"
,
"#FFFFFF"
);
//Applying stlye to gridview header cells
for
(
int
i = 0; i < gvAdminDetails.HeaderRow.Cells.Count; i++)
{
Gridview1.HeaderRow.Cells[i].Style.Add(
"background-color"
,
"#F0F0F0"
);
}
int
j = 1;
//This loop is used to apply stlye to cells based on particular row
foreach
(GridViewRow gvrow
in
gvAdminDetails.Rows)
{
gvrow.BackColor = System.Drawing.Color.White;
if
(j <= Gridview1.Rows.Count)
{
if
(j % 2 != 0)
{
for
(
int
k = 0; k < gvrow.Cells.Count; k++)
{
gvrow.Cells[k].Style.Add(
"background-color"
,
"#F0F0F0"
);
}
}
}
j++;
}
Gridview1.RenderControl(htw);
Response.Write(sw.ToString());
Gridview1.AllowPaging =
true
;
Response.End();
}
public
override
void
VerifyRenderingInServerForm(Control control)
{
//required to avoid the runtime error "
//Control 'GridView1' of type 'GridView' must be placed inside a form tag with runat=server."
}
Gridview Excel Export
C#