Kartik has created his English project in Word 2010 how can he save the project in the folder my file created in D drive
Answers
Answered by
7
Answer:
protected void ExportToExcel(object sender, EventArgs e)
{
gvDetails.AllowPaging = false;
this.bind();
Response.ClearContent();
Response.AddHeader("content-disposition", "attachment; filename=Name.xls");
Response.ContentType = "application/excel";
System.IO.StringWriter sw = new System.IO.StringWriter();
HtmlTextWriter htw = new HtmlTextWriter(sw);
gvDetails.RenderControl(htw);
Answered by
1
Explanation:
tq hlwwwwwwwwwwwwww
Similar questions