Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Gridview Excel Export In C#
WhatsApp
Ashish Srivastava
Apr 27
2016
1.6
k
0
3
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#
Up Next
Gridview Excel Export In C#